Hi,
I have nginx set up on 4 servers for a video streaming project but I
have
drop out issues.
Server A is a simple proxy server that passes through the requests to
the
backend box server B which holds the content.
Server C is another proxy that passes through requests to Server D
which
houses the html, sql, php.
So while a user is on a page they video is passed to them from Server B
through Server A. The problem I have is that there have been reports of
the
stream being cut after say 20 minutes or so (this time varies) and
therefore
stopping the viewing of the video. I have experimented with different
settings but am having real difficulty finding anything that solves this
problem. Here is my proxy conf file:
user nginx nginx;
worker_processes 2;
pid logs/nginx.pid;
error_log logs/error.log warn;
events { worker_connections 1024; }
http {
include conf/mime.types;
default_type application/octet-stream;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
limit_zone one $binary_remote_addr 10m;
server {
limit_conn one 2;
listen 1.2.3.4:80;
server_name proxy.website.com;
location / {
proxy_pass http://1.2.3.4:8008/;
proxy_redirect off;
proxy_buffering off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For
$proxy_add_x_forwarded_for;
client_max_body_size 10m;
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 90;
proxy_temp_file_write_size 64k;
}
}
I would be most grateful any pointers anyone could give me. There is
100mbit
constant passing through this proxy btw.
Kind regards.