diff --git a/roles/nginx/templates/proxy.conf.j2 b/roles/nginx/templates/proxy.conf.j2 index 1c576c9..df1474b 100644 --- a/roles/nginx/templates/proxy.conf.j2 +++ b/roles/nginx/templates/proxy.conf.j2 @@ -2,6 +2,9 @@ {% for ctx, backend in atl_proxy_map.items() %} location /{{ctx}} { proxy_pass {{backend}}; + proxy_read_timeout 300; + proxy_connect_timeout 300; + proxy_send_timeout 300; proxy_redirect off; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade;