Skip to content

Commit

Permalink
Increase nginx + gunicorn timeouts (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
willemarcel authored Feb 20, 2024
1 parent 37e8fc4 commit 4281523
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion helm/osmcha/templates/app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ spec:
command:
- gunicorn
- "--timeout"
- "30"
- "120"
- "--keep-alive"
- "2"
- "--workers"
Expand Down
3 changes: 3 additions & 0 deletions helm/osmcha/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,9 @@ app:
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://app;
fastcgi_connect_timeout 130;
fastcgi_send_timeout 130;
fastcgi_read_timeout 130;
}
location / {
Expand Down

0 comments on commit 4281523

Please sign in to comment.