Dear All,
I was looking to have client Real IP address in Event Log , As of now i see its showing IP Address 127.0.0.1.
I am using NGINX as web server.
any help please ??
Thanks
Dear All,
I was looking to have client Real IP address in Event Log , As of now i see its showing IP Address 127.0.0.1.
I am using NGINX as web server.
any help please ??
Thanks
Thank you so much, i am unable to achive this. my NGINX configuration is as below:
location /auth {
proxy_pass http://localhost:8080;
}
add_header X-XSS-Protection: “1; mode=block”;
add_header Strict-Transport-Security “max-age=31536000; includeSubDomains” always;
#add_header Strict-Transport-Security “max-age=31536000; includeSubdomains; preload”;
add_header Content-Security-Policy “default-src ‘self’; frame-ancestors ‘self’; script-src ‘self’ ‘unsafe-inline’; style-src ‘self’ ‘unsafe-inline’;”;
proxy_set_header X-Forwarded-For $proxy_protocol_addr; # To forward the original client’s IP address
proxy_set_header X-Forwarded-Proto $scheme; # to forward the original protocol (HTTP or HTTPS)
proxy_set_header Host $host; # to forward the original host requested by the client
add_header X-Frame-Options “SAMEORIGIN”;
Any clue please
Thank you so much, managed to get this resolved.