Skip to content
Snippets Groups Projects
Commit a433022e authored by Andreas Kempe's avatar Andreas Kempe
Browse files

hina: nginx: limit HTTP requests to 4 ranges

Nginx appears to hang when >= 6 ranges are used in a HTTP request. Limit
the number of allowed ranges to 4 to prevent issues.
parent 9e25b5c8
No related branches found
No related tags found
No related merge requests found
......@@ -32,6 +32,10 @@ http {
keepalive_timeout 65;
# Nginx verkar hänga sig när >= 6 spann används. Begränsa
# till 4 spann.
max_ranges 4;
server_tokens off;
more_clear_headers 'Server';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment