14 lines
204 B
Nginx Configuration File
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;
|
|
}
|
|
|
|
}
|