Spaces:
Build error
Build error
Update nginx.conf
Browse files- nginx.conf +10 -15
nginx.conf
CHANGED
|
@@ -1,18 +1,13 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
server_name localhost;
|
| 4 |
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
try_files $uri $uri/ /index.html;
|
| 9 |
-
}
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
proxy_set_header X-Forwarded-Proto $scheme;
|
| 17 |
-
}
|
| 18 |
}
|
|
|
|
| 1 |
+
user nginx;
|
| 2 |
+
worker_processes 1;
|
|
|
|
| 3 |
|
| 4 |
+
events {
|
| 5 |
+
worker_connections 1024;
|
| 6 |
+
}
|
|
|
|
|
|
|
| 7 |
|
| 8 |
+
http {
|
| 9 |
+
include /etc/nginx/mime.types;
|
| 10 |
+
default_type application/octet-stream;
|
| 11 |
+
|
| 12 |
+
include /etc/nginx/conf.d/*.conf;
|
|
|
|
|
|
|
| 13 |
}
|