Skip to content

Commit

Permalink
Ngninx timeout not working
Browse files Browse the repository at this point in the history
  • Loading branch information
mpiannucci committed May 15, 2024
1 parent c4caee7 commit 73632fe
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions k8s/nginx-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,17 @@ data:
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Port $server_port;
proxy_set_header Connection "";
proxy_connect_timeout 600;
proxy_send_timeout 600;
proxy_read_timeout 600;
fastcgi_read_timeout 600;
send_timeout 600;
proxy_connect_timeout 600s;
proxy_send_timeout 600s;
proxy_read_timeout 600s;
}
}
fastcgi_connect_timeout 600s;
fastcgi_send_timeout 600s;
fastcgi_read_timeout 600s;
keepalive_timeout 600s;
send_timeout 600s;
}
---
Expand Down

0 comments on commit 73632fe

Please sign in to comment.