markemacht/_markemacht.de/docker/nginx.conf
Kevin Adametz 18216e301c
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (8.3) (push) Has been cancelled
tests / ci (8.4) (push) Has been cancelled
tests / ci (8.5) (push) Has been cancelled
05-06-2026 marke macht Webseite Design Inhalte
2026-06-05 17:43:31 +02:00

19 lines
363 B
Nginx Configuration File

server {
listen 80;
listen [::]:80;
server_name markemacht.test localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ =404;
}
location /assets/ {
expires 7d;
add_header Cache-Control "public, immutable";
}
add_header X-Content-Type-Options nosniff always;
}