码迷,mamicode.com
首页 > 其他好文 > 详细

nginx 端口映射多个应用

时间:2019-01-07 17:30:17      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:bash   .net   listen   映射   https   col   details   style   端口   

nginx端口映射多个应用,应用中的静态资源路径尽量是写相对路径

server {
    listen       8000;
    location / {
   proxy_pass http://10.1.166.216:9999/;
        index  index.html index.htm;
    }
    location /cdh {
   proxy_pass http://10.1.166.113:4690/;
        index  index.html login.html;
    }
    location /tomcat {
   proxy_pass http://10.1.166.171:8080/;
        index  index.html index.htm;
    }
}

 参考文档:1.https://blog.csdn.net/qq_27384769/article/details/78545560

 

nginx 端口映射多个应用

标签:bash   .net   listen   映射   https   col   details   style   端口   

原文地址:https://www.cnblogs.com/jycjy/p/10233889.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!