Files
f1r3wave-website/nginx.conf
2025-10-06 19:22:47 +02:00

15 lines
242 B
Nginx Configuration File

server {
listen 80;
root /usr/share/nginx/html;
index index.html index.htm;
location / {
try_files $uri $uri/ /index.html;
}
error_page 404 /index.html;
location = /index.html {
internal;
}
}