Files
tealfire-website/nginx.conf
2025-08-24 16:52:27 +02:00

14 lines
241 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;
}
}