What you need to do is enable the proxy protocol on the ELB and then point to NGINX. http://docs.aws.amazon.com/elasticloadbalancing/latest/class...
You need to also enable the proxy_protocol in nginx.
server { listen 443 ssl proxy_protocol; ... }
What you need to do is enable the proxy protocol on the ELB and then point to NGINX. http://docs.aws.amazon.com/elasticloadbalancing/latest/class...
You need to also enable the proxy_protocol in nginx.
I'll write something up and share it. But hopefully this will help you in the short term.