-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Labels
bugSomething is not working as expectedSomething is not working as expectedenhancementNew feature or requestNew feature or request
Description
Issue overview (quick description):
Varnish is not passing a true IP, and some sessions in Magento are being created with 127.0.0.1
Steps to reproduce issue:
- Checking the NGINX logs for https show that the True IP is working
- Checking the NGINX logs for http show that everything is logged as 127.0.0.1
Resulting behavior:
- Magento is creating sessions using the 127.0.0.1
Expected behavior:
Magento sessions have the customer's True IP
Additional information (software version & running environment):
Below setting is recommended
sub vcl_recv {
unset req.http.X-Forwarded-For;
set req.http.X-Forwarded-For = client.ip;
}
Metadata
Metadata
Assignees
Labels
bugSomething is not working as expectedSomething is not working as expectedenhancementNew feature or requestNew feature or request