Files
agent-fox/docs/nginx.conf
2026-04-12 20:15:41 +08:00

10 lines
146 B
Nginx Configuration File

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