diff --git a/nginx.conf b/nginx.conf index c179d487..2cba2098 100644 --- a/nginx.conf +++ b/nginx.conf @@ -6,6 +6,11 @@ http { server { error_page 404 /index.html; root /usr/share/nginx/html; + location /assets { + expires 1y; + log_not_found off; + access_log off; + } location = /index.html { add_header Cache-Control 'no-store'; }