Files
eurovision2026/nginx.conf
T

13 lines
206 B
Nginx Configuration File
Raw Normal View History

2026-05-16 18:59:13 +00:00
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;
}