mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
[nginx] simplify the root specification for sendfile (#121)
Signed-off-by: Jakob Ackermann <das7pad@outlook.com>
This commit is contained in:
parent
6f46b2c145
commit
991cb29d0b
1 changed files with 2 additions and 5 deletions
|
@ -2,7 +2,7 @@ server {
|
||||||
listen 80;
|
listen 80;
|
||||||
server_name _; # Catch all, see http://nginx.org/en/docs/http/server_names.html
|
server_name _; # Catch all, see http://nginx.org/en/docs/http/server_names.html
|
||||||
|
|
||||||
set $static_path /var/www/sharelatex/web/public;
|
root /var/www/sharelatex/web/public/;
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
proxy_pass http://127.0.0.1:3000;
|
proxy_pass http://127.0.0.1:3000;
|
||||||
|
@ -29,16 +29,13 @@ server {
|
||||||
|
|
||||||
location /stylesheets {
|
location /stylesheets {
|
||||||
expires 1y;
|
expires 1y;
|
||||||
root $static_path/;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
location /minjs {
|
location /minjs {
|
||||||
expires 1y;
|
expires 1y;
|
||||||
root $static_path/;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
location /img {
|
location /img {
|
||||||
expires 1y;
|
expires 1y;
|
||||||
root $static_path/;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue