freekake_webapp/nginx.conf
2025-08-07 12:28:33 +07:00

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