Hello!
I use Nginx http server as reverse proxy. All working fine, so fast, but...i have no real ip adresses in logs access, so i can see only one my ip of my nginx server (internal ip)
nginx compile with "ngx_http_realip_module", and in configuration file of nginx is:
proxy_set_header Host my.example.com;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
when i use nginx+apache i CAN see real ip, but with nginx+HFS i can`t see...
Help me ))))