internal location keepalive_requests issue
crasyangel
nginx-forum at forum.nginx.org
Fri Aug 26 18:50:15 UTC 2016
location /hls {
error_page 404 = @hls;
keepalive_requests 1000;
}
location @hls {
# Serve HLS fragments
types {
application/vnd.apple.mpegurl m3u8;
video/mp2t ts;
}
root /tmp;
add_header Cache-Control no-cache;
keepalive_requests 1000;
}
keepalive_requests must be large enough in this two location meanwhile
if set keepalive_requests to 0 or 1 in /hls or @hls, keepalive_requests
would not work in the other location
Posted at Nginx Forum: https://forum.nginx.org/read.php?2,269220,269220#msg-269220
More information about the nginx
mailing list