美文网首页
mac nginx 注意事项

mac nginx 注意事项

作者: Mylovesunshine | 来源:发表于2019-01-17 10:23 被阅读4次

0:安装
brew install nginx

  1. 403
    第二行 添加 user root owner;

  2. 打包路径修改
    默认路径:
    location / {
    root root;
    index index.html index.htm;
    }
    修改路径:
    location / {
    root /Users/yy/Desktop/SVN/snailLabs/dist; # 项目打包后静态文件所
    在路径
    index index.html index.htm;
    }
    3.vue 打包首页 正常,其他页面404解决方法
    location / {
    root /Users/yy/Desktop/SVN/snailLabs/dist; # 项目打包后静态文件所
    在路径
    index index.html index.htm;
    try_files uriuri/ @router;
    }

location @router {

rewrite ^.*$ /index.html last;

}

相关文章

网友评论

      本文标题:mac nginx 注意事项

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