I am securing my wordpress login with fail2ban. Fail2ban reads the access logs and evaluates 403 messages - HTTP status header set by wordpress function status_header() - which are created whenever a login fails. Now the issue: since my site is behind a DO load balancer, all 403 errors are therefore associated with internal DO IPs.Is there any way to log the’real’ user IP instead of the one from the loadbalancer?
Best Clemens
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Enter your email to get $200 in credit for your first 60 days with DigitalOcean.
New accounts only. By submitting your email you agree to our Privacy Policy.
The outside client’s real source IP is in the X-Forwarded-For header. (Load Balancer reference)
Getting fail2ban to look at that header will involve making sure your HTTP server logs include that header, and then adjusting fail2ban to match on it.