在Nginx中,可以通过以下几种方式实现监听同一个端口但转发到不同的后端应用:
server {
listen 80;
server_name app1.example.com;
location / {
proxy_pass http://localhost:3000;
# 其他代理设置...
}
}
server {
listen 80;
server_name app2.example.com;
location / {
proxy_pass http://localhost:4000;
# 其他代理设置...
}
}
server {
listen 80;
server_name example.com;
location /app1/ {
proxy_pass http://localhost:3000/;
# 其他代理设置...
}
location /app2/ {
proxy_pass http://localhost:4000/;
# 其他代理设置...
}
}
map $http_x_application $backend {
default http://localhost:3000;
"app2" http://localhost:4000;
}
server {
listen 80;
location / {
proxy_pass $backend;
# 其他代理设置...
}
}
map $arg_app $backend {
default http://localhost:3000;
"app2" http://localhost:4000;
}
server {
listen 80;
location / {
proxy_pass $backend;
# 其他代理设置...
}
}
基于域名的转发是最推荐的方式,因为:
如果必须使用路径前缀:
高级配置可能需要使用:
proxy_set_header
传递原始主机名rewrite
规则调整路径upstream
模块实现负载均衡对于WebSocket应用,需要额外配置:
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
您需要哪种具体的转发方式?我可以提供更详细的配置示例。