Skip to content

Commit

Permalink
5min nginx request timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
b-gran committed Aug 22, 2024
1 parent cf6e6ae commit c84e032
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions deploy/default.conf
Original file line number Diff line number Diff line change
Expand Up @@ -190,10 +190,10 @@ http {

location / {
absolute_redirect off;
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 90;
send_timeout 90;
proxy_connect_timeout 300;
proxy_send_timeout 300;
proxy_read_timeout 300;
send_timeout 300;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
Expand Down

0 comments on commit c84e032

Please sign in to comment.