Skip to content
Snippets Groups Projects
Commit a30908c7 authored by Antoine Lambert's avatar Antoine Lambert
Browse files

docker/nginx: Align objstorage proxy_read_timeout value with production

As in production settings for the objstorage reverse proxy, set HTTP read
timeout to 1h in order to avoid 504 error (Gateway Time-out) when posting
a large amount of contents to the objects storage.
parent 344153b9
No related branches found
Tags v0.23.5
1 merge request!221docker/nginx: Align objstorage proxy_read_timeout value with production
......@@ -97,6 +97,7 @@ http {
rewrite ^/objstorage/(.*)$ /$1 break;
proxy_pass $upstream;
proxy_read_timeout 3600s;
}
location /prometheus {
set $upstream "http://prometheus:9090";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment