Files
Website/nginx.conf
2025-06-01 03:24:54 +02:00

11 lines
159 B
Nginx Configuration File

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