我有这个haproxy配置:
frontend node_in
bind 0.0.0.0:3000-4000
mode tcp
default_backend default_node
backend default_node
balance roundrobin
mode tcp
server sd1 unix@/sockets/node.sock send-proxy check
server sd2 127.0.0.1:8998 backup
,它指向在unix套接字上监听的nginx。 问题是我现在需要在nginx中进入端口,并且$ server_port当然是空的,因为它来自haproxy。有什么办法可以做到这一点?