Files
doormile_app_web/nginx.config
2026-06-11 15:49:54 +00:00

20 lines
514 B
Plaintext

events {}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
server {
listen 3000;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
# Next.js static export creates page.html (e.g. contact.html) for routes.
# We check $uri.html to allow clean URLs without the .html extension.
try_files $uri $uri.html $uri/ /404.html;
}
}
}