Spaces:
Sleeping
Sleeping
Update conf/nginx.conf
Browse files- conf/nginx.conf +3 -4
conf/nginx.conf
CHANGED
|
@@ -8,9 +8,6 @@ worker_processes 1;
|
|
| 8 |
#pid logs/nginx.pid;
|
| 9 |
pid /tmp/nginx.pid;
|
| 10 |
|
| 11 |
-
client_body_temp_path /tmp/nginx/client_temp
|
| 12 |
-
|
| 13 |
-
|
| 14 |
events {
|
| 15 |
worker_connections 1024;
|
| 16 |
}
|
|
@@ -18,7 +15,9 @@ events {
|
|
| 18 |
|
| 19 |
http {
|
| 20 |
include mime.types;
|
| 21 |
-
include
|
|
|
|
|
|
|
| 22 |
default_type application/octet-stream;
|
| 23 |
|
| 24 |
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
|
|
|
|
| 8 |
#pid logs/nginx.pid;
|
| 9 |
pid /tmp/nginx.pid;
|
| 10 |
|
|
|
|
|
|
|
|
|
|
| 11 |
events {
|
| 12 |
worker_connections 1024;
|
| 13 |
}
|
|
|
|
| 15 |
|
| 16 |
http {
|
| 17 |
include mime.types;
|
| 18 |
+
include /etc/nginx/conf.d/*.conf;
|
| 19 |
+
|
| 20 |
+
client_body_temp_path /tmp/nginx/client_temp
|
| 21 |
default_type application/octet-stream;
|
| 22 |
|
| 23 |
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
|