Spaces:
Paused
Paused
Update nginx.conf.sample
Browse files- nginx.conf.sample +4 -0
nginx.conf.sample
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
|
|
| 1 |
error_log /dev/null crit;
|
| 2 |
pid /ubuntu/nginx.pid;
|
|
|
|
|
|
|
|
|
|
| 3 |
|
| 4 |
http {
|
| 5 |
include /etc/nginx/mime.types;
|
|
|
|
| 1 |
+
worker_processes auto;
|
| 2 |
error_log /dev/null crit;
|
| 3 |
pid /ubuntu/nginx.pid;
|
| 4 |
+
events {
|
| 5 |
+
worker_connections 1024;
|
| 6 |
+
}
|
| 7 |
|
| 8 |
http {
|
| 9 |
include /etc/nginx/mime.types;
|