Open
Description
When working with a reverse proxy in front of Django, request.META.get('REMOTE_ADDR', '')
might not be set correctly. This is something that could easily be avoided by using e.g. django-ipware
:
ipware.ip.get_ip(request)
This would unfortunately add a new requirement to django-user-sessions, but fix some issues in this project.
Happy to create a pull request if you want!