Spaces:
Runtime error
Runtime error
Update nginx.conf
Browse files- nginx.conf +5 -11
nginx.conf
CHANGED
|
@@ -1,5 +1,8 @@
|
|
| 1 |
-
worker_processes
|
| 2 |
-
|
|
|
|
|
|
|
|
|
|
| 3 |
|
| 4 |
rtmp {
|
| 5 |
server {
|
|
@@ -14,15 +17,6 @@ rtmp {
|
|
| 14 |
}
|
| 15 |
|
| 16 |
http {
|
| 17 |
-
sendfile on;
|
| 18 |
-
tcp_nopush on;
|
| 19 |
-
tcp_nodelay on;
|
| 20 |
-
keepalive_timeout 65;
|
| 21 |
-
types_hash_max_size 2048;
|
| 22 |
-
|
| 23 |
-
include /etc/nginx/mime.types;
|
| 24 |
-
default_type application/octet-stream;
|
| 25 |
-
|
| 26 |
server {
|
| 27 |
listen 80;
|
| 28 |
|
|
|
|
| 1 |
+
worker_processes 1;
|
| 2 |
+
|
| 3 |
+
events {
|
| 4 |
+
worker_connections 1024;
|
| 5 |
+
}
|
| 6 |
|
| 7 |
rtmp {
|
| 8 |
server {
|
|
|
|
| 17 |
}
|
| 18 |
|
| 19 |
http {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
server {
|
| 21 |
listen 80;
|
| 22 |
|