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