mirror of
https://github.com/YunoHost-Apps/jirafeau_ynh.git
synced 2024-09-03 19:35:53 +02:00
Extend proxy_read_timeout
Extending client_body_timeout wasn't enough for a file > 5Gb. I had to set proxy_read_timeout as advised here: http://howtounix.info/howto/110-connection-timed-out-error-in-nginx
This commit is contained in:
parent
b1c9f3ea8a
commit
7604459594
1 changed files with 1 additions and 0 deletions
|
@ -5,6 +5,7 @@ location YNH_WWW_LOCATION {
|
||||||
}
|
}
|
||||||
client_max_body_size 10G;
|
client_max_body_size 10G;
|
||||||
client_body_timeout 30m;
|
client_body_timeout 30m;
|
||||||
|
proxy_read_timeout 30m;
|
||||||
index index.php;
|
index index.php;
|
||||||
try_files $uri $uri/ index.php;
|
try_files $uri $uri/ index.php;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue