setting up client ip and hostname in nginx?

dec w spywdec at gmail.com
Wed Nov 2 03:33:15 UTC 2016


you can get client ip, but you can't get client hostname. $host just your
server hostname.

2016-11-01 9:52 GMT+08:00 ngineo <nginx-forum at forum.nginx.org>:

> i am working on AWS Elastic Beanstalk Instance, which runs Java applicaiton
> servered through Nginx ( no load balancer in front, just a standalone
> instance )
> I need to set cookie to catch client ip and client hostname. Is this
> possible to do it in nginx and if yes then how?
> Below if my nginx configuration file:
>
> location / {
> proxy_pass          http://127.0.0.1:5000;
> proxy_http_version  1.1;
>
> proxy_set_header    Connection          $connection_upgrade;
> proxy_set_header    Upgrade             $http_upgrade;
> proxy_set_header    Host                $host;
> proxy_set_header    X-Real-IP           $remote_addr;
> proxy_set_header    X-Forwarded-For     $proxy_add_x_forwarded_for;
> }
>
> Posted at Nginx Forum: https://forum.nginx.org/read.
> php?2,270675,270675#msg-270675
>
> _______________________________________________
> nginx mailing list
> nginx at nginx.org
> http://mailman.nginx.org/mailman/listinfo/nginx
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.nginx.org/pipermail/nginx/attachments/20161102/2fc94d57/attachment.html>


More information about the nginx mailing list