familyfedie-website/docker/default.conf.template
Loyyd 9fee73fd96
Some checks are pending
/ deploy (push) Waiting to run
speeches organized
2026-06-10 21:07:01 +02:00

16 lines
227 B
Text

server {
listen 80;
listen [::]:80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location ~ /\. {
return 404;
}
location / {
try_files $uri $uri/ =404;
}
}