记录 nginx 部署前端我的项目所需配置
前端 router history 模式
server {
listen 443; # 监听本机所有 ip 上的 443 端口
server_name aax.xxx.com; # 域名地址
root /xxx/xxx/xxx;
# 新建日志文件
access_log /xxx/xxx/xxx/xxx/xxx/access.log main;
location / {
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /502.html;
location = /50x.html {root html;}
}