首先找到Nginx配置文件
cd /usr/local/nginx/conf
vim nginx.conf
server {
# 监听ip端口
listen 80;
# 主机名称
server_name xxx.com;
# 设置字符集
#charset koi8-r;
# 虚拟server的访问日志 相当于局部变量
#access_log logs/host.access.log main;
location ~ ^/favicon\.ico$ {
root /tmp/web/static;
}
# 请求路径, /表示根目录
location / {
# 默认项目路径
root /tmp/web;
# 索引文件名称
index index.html;
# 解决刷新页面变成404问题的代码
try_files $uri $uri/ /index.html;
# 代理
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}