1
0
Fork 0
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:
JimboJoe 2017-01-01 09:27:13 +01:00 committed by GitHub
parent b1c9f3ea8a
commit 7604459594

View file

@ -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;