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

View File

@ -1,11 +1,3 @@
# map $http_accept $webp_suffix {
# default "";
# "~*webp" ".webp";
# }
# types {
# image/webp webp;
# }
server {
listen 80;
listen [::]:80;
@ -14,26 +6,15 @@ server {
#access_log /var/log/nginx/host.access.log main;
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";
root /usr/share/nginx/html;
index index.html index.htm;
}
# 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;