2025-09-24 15:00:34 +08:00

14 lines
204 B
Nginx Configuration File

server {
listen 80;
server_name web.argus.com;
root /usr/share/nginx/html;
index index.html;
# React 前端路由兼容
location / {
try_files $uri /index.html;
}
}