Disable IP Address logging in "Recent Logins"
-
Working in a very privacy-centric market in Europe. (public institutions with data on minors)
Is there a way to disable the IP Address logging for Recent Logins? I know there is an
ipAddress
property in the request body for some requests. So if there is no global "do not log IPs" that could be used, however it is a bit flimsy.Forcing the IP Address to be the server IP address will also be acceptable.
-
@ltyl I think that you could use a proxy that would set the
X-Forwarded-For:
header to a known bogus value. If you put that in front of FusionAuth, it should happily set every ip address to that value.https://fusionauth.io/docs/v1/tech/admin-guide/proxy-setup#headers-to-set
This will mean that you can't use IP based access control lists, however.