diff --git a/ops/friends-deploy.tmpl.yaml b/ops/friends-deploy.tmpl.yaml index eea68a6..2663c2d 100644 --- a/ops/friends-deploy.tmpl.yaml +++ b/ops/friends-deploy.tmpl.yaml @@ -637,6 +637,9 @@ nginx: proxy_set_header Upgrade ${DOLLAR}http_upgrade; proxy_set_header Connection ${DOLLAR}connection_upgrade; proxy_redirect off; + proxy_connect_timeout 3600s; + proxy_send_timeout 3600s; + proxy_read_timeout 3600s; proxy_pass http://rails_app; } } diff --git a/ops/production-deploy.tmpl.yaml b/ops/production-deploy.tmpl.yaml index 5acb80f..4fff3e3 100644 --- a/ops/production-deploy.tmpl.yaml +++ b/ops/production-deploy.tmpl.yaml @@ -619,6 +619,9 @@ nginx: proxy_set_header Upgrade ${DOLLAR}http_upgrade; proxy_set_header Connection ${DOLLAR}connection_upgrade; proxy_redirect off; + proxy_connect_timeout 3600s; + proxy_send_timeout 3600s; + proxy_read_timeout 3600s; proxy_pass http://rails_app; } }