nginx_跳转到指定配置

nginx_跳转到指定配置
 location /
        {
            try_files $uri @apache;
        }


  location @apache
        {
            internal;
            proxy_pass http://127.0.0.1:88;
            include proxy.conf;
        }

 

posted on 2017-01-29 14:00 木子炜培先生 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/liadmin/p/6357461.html

你可能感兴趣的:(nginx_跳转到指定配置)