some fixes for ustreamer

This commit is contained in:
Devaev Maxim
2018-09-28 05:06:23 +03:00
parent 8fd196bde8
commit 054f8e44db
8 changed files with 37 additions and 21 deletions

View File

@@ -9,6 +9,7 @@ error_log /dev/null crit;
events {
worker_connections 1024;
use epoll;
multi_accept on;
}
http {
@@ -19,6 +20,8 @@ http {
charset utf-8;
sendfile on;
tcp_nodelay on;
tcp_nopush on;
keepalive_timeout 10;
client_body_temp_path /tmp/nginx.client_body_temp;
@@ -116,6 +119,7 @@ http {
rewrite /streamer/?(.*) /$1 break;
proxy_pass http://ustreamer;
include /etc/nginx/proxy-params.conf;
postpone_output 0;
proxy_buffering off;
proxy_ignore_headers X-Accel-Buffering;
}