Files
DEKRA_sponsor_seite/vhost.conf
2026-02-26 09:11:59 +01:00

16 lines
321 B
Plaintext

server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ $uri.html =404;
}
location ~* \.(jpg|jpeg|png|gif|ico|css|js|mp4|webm)$ {
expires 30d;
add_header Cache-Control "public, no-transform";
}
}