Files
2026-07-13 12:31:00 +08:00

9 lines
181 B
Nginx Configuration File

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