This commit is contained in:
Steffen Illium
2023-12-24 15:31:17 +01:00
committed by Steffen Illium
parent 0b418f0d41
commit 6f535fab44

@ -1,11 +1,3 @@
# map $http_accept $webp_suffix {
# default "";
# "~*webp" ".webp";
# }
# types {
# image/webp webp;
# }
server {
listen 80;
listen [::]:80;
@ -16,24 +8,13 @@ server {
location / {
root /usr/share/nginx/html;
index index.html index.htm;
expires 1y;
etag off;
if_modified_since off;
add_header Cache-Control "public, no-transform";
}
# location ~* ^.+\.(png|jpg|jpeg)$ {
# add_header Vary Accept;
# try_files $uri$webp_suffix $uri =404;
# }
error_page 404 /404.html;
location = /404.html {
root /usr/share/nginx/html;
}
# redirect server error pages to the static page /50x.html
#
#error_page 500 502 503 504 /50x.html;