My goal is that every user can only log into my Django web application from a specific workstation.
If the user tries to log in from another workstation, the logon must be rejected.
Is it possible to implement such a licensing model in Django, perhaps by identifying the host name of the workstation?
I am using Django 1.10 / Python 3.5.
source
share