1.下载nginx
nginx 常用命令
start nginx 启动
nginx -s reload 重启
nginx -s stop(快速停止nginx) 或 nginx -s quit(完整有序的停止nginx) 关闭nginx
2.配置地址
location / {
# 指向我们打包后上传的前端文件
root /opt/nginx/dist;
index index.html;
}
location /jwt/
{
# 转发请求到后端服务网关
proxy_pass http://127.0.0.1:8765/jwt/;
}
location /api/ {
proxy_pass http://127.0.0.1:8765/api/;
}