Skip to content

Commit

Permalink
nginx: Don't be a dum dum
Browse files Browse the repository at this point in the history
  • Loading branch information
keegancsmith committed Jan 11, 2019
1 parent def9d22 commit a434a7e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cmd/server/shared/nginx.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ http {
# Don't timeout websockets quickly. Default is 60s. This is the timeout
# between reads/writes, not the full session timeout.
proxy_send_timeout 1h
proxy_read_timeout 1h
proxy_send_timeout 1h;
proxy_read_timeout 1h;
access_log off;
upstream backend {
Expand Down
4 changes: 2 additions & 2 deletions dev/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ http {

# Don't timeout websockets quickly. Default is 60s. This is the timeout
# between reads/writes, not the full session timeout.
proxy_send_timeout 1h
proxy_read_timeout 1h
proxy_send_timeout 1h;
proxy_read_timeout 1h;

access_log off;
upstream backend {
Expand Down

0 comments on commit a434a7e

Please sign in to comment.