I
Irfan
Guest
Shouldnt be a problem between load balancer or reverse proxy. This is what I did while configuring nginx load balancer upstream pasoe { #ip_hash; server localhost:9811; server localhost:6811; } server { listen 83; location / { proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_pass http://pasoe; } } The URL would be http://<load balancer IP Address::83/apsv Haven't tried this for HTTP'S, but should be similar.
Continue reading...
Continue reading...