0
点赞
收藏
分享

微信扫一扫

若依部署前端nginx的配置

洲行 2022-02-22 阅读 66
nginx前端

# 配置前端访问路径

   location / {
            root   /data/apps/hyd-web;
            index  index.html index.htm;
        }

       #  部署的后端访问地址和端口号
        location /dev-api/ {
                proxy_pass http://127.0.0.1:15060/;
        }

 

举报

相关推荐

0 条评论