Update static file caching and error page configuration

This commit is contained in:
Max Schmidt 2023-10-24 10:10:13 +02:00
parent f6debe5f56
commit ab1f54d573

View File

@ -23,19 +23,13 @@ http {
internal;
}
location ~* \.(jpg|jpeg|png|gif|ico|css|html)$ {
expires 30d;
location ~* \.(jpg|jpeg|png|gif|ico|css|js|htm|html)$ {
root /usr/share/nginx/html;
expires 30d;
add_header Pragma public;
add_header Cache-Control "public";
}
location ~* \.js$ {
expires 30d;
add_header Pragma public;
add_header Cache-Control "public";
add_header Content-Type application/javascript;
}
error_page 404 /404.html;
error_page 404 /error_page.html;
}
}