美文网首页
将vue的product代码部署为根,其他的静态目录如何配置?

将vue的product代码部署为根,其他的静态目录如何配置?

作者: andrew_su_cd | 来源:发表于2020-09-16 21:31 被阅读0次

    server {
    listen 80;
    server_name abc.com;
    location ^~ /api/ {
    proxy_pass http://127.0.0.1:5000;
    }
    }
    location / {
    root /root/desk_top/object_manage/dist/;
    index index.html;
    try_files uriuri/ /index.html;
    }
    location /welcome2 {
    alias /root/desk_top/ruanjianguanli/;
    index index.html;
    }
    }

    关键点描述:
    1、根上的配置,需要使用try_files
    2、静态目录的配置,一是要直接配置目录名称;二是配置alias指向具体的静态目录。

    相关文章

      网友评论

          本文标题:将vue的product代码部署为根,其他的静态目录如何配置?

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