diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2020-05-31 12:36:05 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2020-05-31 12:38:35 +0200 |
commit | 372b3427c6683a95500e06baab6804d603ada777 (patch) | |
tree | 838ed9d57e90ee8cf470d4e60057725b92907928 /nginx | |
parent | 454cf552bcadfcc63be9ede0a3b32e45db5f5b32 (diff) | |
download | pillar-372b3427c6683a95500e06baab6804d603ada777.tar.xz |
gallery: Bump proxy timeouts to 3 minutes
For larger images or depending on the connection, uploading an image
might take more than a minute and then cause a timeout. Bump it to 3
minutes which should hopefully be enough.
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'nginx')
-rw-r--r-- | nginx/gallery_remmy_io.sls | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nginx/gallery_remmy_io.sls b/nginx/gallery_remmy_io.sls index 96d0609..30d2d24 100644 --- a/nginx/gallery_remmy_io.sls +++ b/nginx/gallery_remmy_io.sls @@ -106,5 +106,7 @@ nginx: - location /: - proxy_http_version: '1.1' - proxy_pass: http://127.0.0.1:8186 + - proxy_read_timeout: 180s; + - proxy_send_timeout: 180s; # vim: ft=yaml et: |