Files
mokeeText/frontend/nginx.conf
2026-07-15 16:08:17 +08:00

12 lines
168 B
Nginx Configuration File

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