When configuring reverse proxy with nginx, the option "Use Client IP in Header" usually works fine.
server {
listen 80;
server_name _;
location / {
proxy_pass http://1.1.1.1;
include proxy_params;
}
}
However, when using nginx to proxy tcp stream, this option...