nginx 简单实用配置——笔记篇

来源:互联网 发布:最优化理论与算法试卷 编辑:程序博客网 时间:2024/06/05 18:56

nginx简单实用的配置。——笔记篇


location / {
            root   html;
            index  index.html index.htm;
        }


location /wechat/ {
            proxy_pass   http://localhost:8080/#/login;
            index  index.html index.htm;
        } 

location /wechat_server/ {
alias E:/Base/vue-wechat-demo/dist/;
}

原创粉丝点击