|
@@ -21,6 +21,12 @@ http {
|
|
|
|
|
|
root /opt/app/build;
|
|
root /opt/app/build;
|
|
|
|
|
|
|
|
+ # all assets are either static or contain hash in filename, cache forever
|
|
|
|
+ location ^~ /assets/ {
|
|
|
|
+ add_header Cache-Control "public, max-age=31536000, s-maxage=31536000, immutable";
|
|
|
|
+ try_files $uri =404;
|
|
|
|
+ }
|
|
|
|
+
|
|
# all workbox scripts are compiled with hash in filename, cache forever
|
|
# all workbox scripts are compiled with hash in filename, cache forever
|
|
location ^~ /workbox- {
|
|
location ^~ /workbox- {
|
|
add_header Cache-Control "public, max-age=31536000, s-maxage=31536000, immutable";
|
|
add_header Cache-Control "public, max-age=31536000, s-maxage=31536000, immutable";
|
|
@@ -28,10 +34,16 @@ http {
|
|
}
|
|
}
|
|
|
|
|
|
location / {
|
|
location / {
|
|
- try_files $uri /$uri /index.html =404;
|
|
|
|
|
|
+ autoindex off;
|
|
|
|
+ expires off;
|
|
|
|
+ add_header Cache-Control "public, max-age=0, s-maxage=0, must-revalidate" always;
|
|
|
|
+ try_files $uri /index.html =404;
|
|
}
|
|
}
|
|
|
|
|
|
location /backend {
|
|
location /backend {
|
|
|
|
+ expires off;
|
|
|
|
+ add_header Cache-Control "public, max-age=0, s-maxage=0, must-revalidate" always;
|
|
|
|
+
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header Host $host;
|