diff --git a/nginx/conf.d/default.conf b/nginx/conf.d/default.conf index 88c1428d..d4709c13 100644 --- a/nginx/conf.d/default.conf +++ b/nginx/conf.d/default.conf @@ -13,11 +13,13 @@ server { error_page 404 =200 /index.html; location / { + expires -1; index index.html; # try_files $uri $uri/ /index.html; } location ~ /?(.*)$ { + expires -1; index index.html; } }