Files
website/nginx.conf
tikaiz ce135f6bf2
All checks were successful
publish.yml / publish (push) Successful in 1m11s
move to / subpath
2026-04-10 12:45:37 +02:00

10 lines
125 B
Nginx Configuration File

server {
listen 80;
root /usr/share/nginx/html;
location / {
try_files $uri $uri/ /index.html;
}
}