server {
# 端口号
listen 3309;
# IP
server_name 192.168.1.3;
location / {
# 执行目录
root /var/www/vue-app-base/dist/;
index index.html;
# index index.html index.htm;
# vue支持路由跳转
try_files $uri $uri/ /index.html;
}
# 反向代理 解决跨域问题
location ^~ /riegl/ {
proxy_pass http://192.168.1.3:8080;
}
location ^~ /APX/ {
proxy_pass http://192.168.1.3:8080;
}
location ^~ /set/ {
proxy_pass http://192.168.1.3:8080;
}
}
相关文章
- 12-13使用Docker容器部署RuoYi-Vue前后端分离项目
- 12-13nginx+gunicorn部署Django项目
- 12-13django gunicorn nginx配置上的坏网关
- 12-13django – 如果你只发送JSON对象,那么适当的NGINX配置是什么?
- 12-13nginx https作网关配置webapi路由规则
- 12-13B02 Vue+Element 创建新项目
- 12-13vue => vue项目里一行代码创建所有文件的指令
- 12-13vue项目中使用element ui上传图片到七牛
- 12-13vue项目在git commit时,使用eslint检测
- 12-13nw打包vue项目exe