Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以让 2 个不同的应用程序(nginx 和 haproxy)在同一个端口上监听不同的主机名?
IE:
代理:
frontend incoming_http bind www.freinds.com:80
nginx:
server { listen 80; server_name www.spelling.com; }
简短的回答:没有。
但是,您可以使用一个作为反向代理向另一个发送请求(例如,在端口 8080 上)。我曾经nginx在端口 443 上终止 SSL,然后通过 路由整个请求haproxy,因此这可能取决于您想要执行您所要求的操作的原因。
nginx
haproxy