mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #288 from barracks510/master
Update NGINX Configuration
This commit is contained in:
commit
a772109e16
1 changed files with 12 additions and 0 deletions
|
@ -15,6 +15,18 @@ server {
|
||||||
proxy_send_timeout 3m;
|
proxy_send_timeout 3m;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
location /socket.io {
|
||||||
|
proxy_pass http://localhost:3026;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
proxy_set_header Host $http_x_forwarded_host;
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection "upgrade";
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_read_timeout 3m;
|
||||||
|
proxy_send_timeout 3m;
|
||||||
|
}
|
||||||
|
|
||||||
location /stylesheets {
|
location /stylesheets {
|
||||||
expires 1y;
|
expires 1y;
|
||||||
root $static_path/;
|
root $static_path/;
|
||||||
|
|
Loading…
Reference in a new issue