So, I set up a OLS proxy with Django, and setup django logging and ip function in views.py. Then the console log shows client IP correctly with/without the "Use Client IP" feature.
views.py
def get_client_ip(request):
x_forwarded_for = request.META.get('HTTP_X_FORWARDED_FOR')
if...