MyINPulse/front/nginx/default.conf
2025-02-03 21:38:04 +01:00

10 lines
156 B
Plaintext

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