nginx不同端口映射到80端口,http和https同时请求
重点location / {
proxy_pass http://localhost:8090;
proxy_redirect default ;
}
location /xcx/{
proxy_pass http://localhost:8091/;
proxy_redirect default;
} 如果想通过 http://localhost:/xcx/a.
原创
2017-07-17 09:31:58 ·
6404 阅读 ·
1 评论