Spaces:
Paused
Paused
Update nginx.conf
Browse files- nginx.conf +1 -5
nginx.conf
CHANGED
|
@@ -21,14 +21,10 @@ http {
|
|
| 21 |
server_name _;
|
| 22 |
|
| 23 |
location = / {
|
| 24 |
-
root /app
|
| 25 |
try_files /index.html =404;
|
| 26 |
}
|
| 27 |
|
| 28 |
-
location /static/ {
|
| 29 |
-
alias /app/static/;
|
| 30 |
-
}
|
| 31 |
-
|
| 32 |
location /desktop/ {
|
| 33 |
proxy_pass http://127.0.0.1:6080/;
|
| 34 |
proxy_http_version 1.1;
|
|
|
|
| 21 |
server_name _;
|
| 22 |
|
| 23 |
location = / {
|
| 24 |
+
root /app;
|
| 25 |
try_files /index.html =404;
|
| 26 |
}
|
| 27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
location /desktop/ {
|
| 29 |
proxy_pass http://127.0.0.1:6080/;
|
| 30 |
proxy_http_version 1.1;
|