nginx 端口映射多个应用

Posted 求知若饥,虚心若愚。

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 端口映射多个应用相关的知识,希望对你有一定的参考价值。

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 端口映射多个应用的主要内容,如果未能解决你的问题,请参考以下文章

Nginx 泛解析配置请求映射到多端口实现二级域名访问

nginx一个端口配置多个不同服务映射

[Nginx]-外部多端口映射Https443端口配置

nginx反向代理-多端口映射

nginx 80端口反向代理多个域名,怎样隐藏端口的

nginx 80端口反向代理多个域名,怎样隐藏端口的