[chore] nginx cache css and js files
This commit is contained in:
parent
3ff10f0e8b
commit
f18f20d12b
1 changed files with 11 additions and 1 deletions
12
dist/nginx.conf
vendored
12
dist/nginx.conf
vendored
|
@ -3,6 +3,16 @@ proxy_cache_path /var/cache/nginx levels=1:2 keys_zone=STATIC:10m inactive=
|
|||
server {
|
||||
server_name {SERVER};
|
||||
|
||||
location ~* \.(ico|css|js)$ {
|
||||
proxy_pass http://127.0.0.1:3000;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
expires 1d;
|
||||
access_log off;
|
||||
add_header Pragma public;
|
||||
add_header Cache-Control "public, max-age=86400";
|
||||
}
|
||||
|
||||
location / {
|
||||
proxy_pass http://127.0.0.1:3000;
|
||||
proxy_set_header Host $host;
|
||||
|
@ -11,7 +21,7 @@ server {
|
|||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_buffering on;
|
||||
proxy_cache STATIC;
|
||||
proxy_cache_valid 200 1d;
|
||||
proxy_cache_valid 200 6h;
|
||||
add_header X-Cached $upstream_cache_status;
|
||||
add_header 'Access-Control-Allow-Origin' '*';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue