美文网首页
nginx配置vue前端项目

nginx配置vue前端项目

作者: 寒沁 | 来源:发表于2024-05-05 11:28 被阅读0次
    # 修改端口     
    listen       8096;
    listen  [::]:8096;
    
    #增加以下配置
    # 根目录地址
    root /var/www/html/law;
    
    # 前端地址
    location ^~ / {
         try_files $uri $uri/ /index.html;
    }
    
    # 接口配置, prod-api 是vue转换访问地址
    location /prod-api/ {
         proxy_pass http://后端服务ip:端口/;
    }

相关文章

网友评论

      本文标题:nginx配置vue前端项目

      本文链接:https://www.haomeiwen.com/subject/cxrkfjtx.html