xlcs-admin/nginx.conf

22 lines
537 B
Nginx Configuration File
Raw Normal View History

2024-05-09 14:30:33 +08:00
server {
listen 80;
listen [::]:80;
2024-05-09 14:31:45 +08:00
server_name 39.105.207.27;
2024-05-09 14:30:33 +08:00
access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
# 新增下面这句其他是默认nginx配置
# 解决部分前端框架的路由问题在浏览器刷新报错404
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}