Files
eurovision2026/nginx.conf
T
2026-05-16 18:59:13 +00:00

13 lines
206 B
Nginx Configuration File

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