8000 GitHub - cornelinux/django-linotp-auth: two factor authentication with LinOTP for django and djangoCMS
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

cornelinux/django-linotp-auth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-linotp-auth

two factor authentication with LinOTP for django and djangoCMS.

configure

In your projetc/settings.py add this as authentication module::

AUTHENTICATION_BACKENDS = ('django_linotp.linotp_auth.LinOTP', )

Then you can add a dictionary LINOTP with all necessary configuration::

LINOTP = { 'url' : 'https://puckel/validate/check', 'timeout' : 5, 'ssl_verify' : False, 'host_verify' : False, 'create_user' : False, }

The url contains the location of your LinOTP server. If you have no trusted SSL certificate you should set ssl_verify and host_verify to False.

create_user is not working at the moment. You need to create the user in django manually. The user also needs to exist in the corresponding LinOTP UserIdResolver.

See: https://docs.djangoproject.com/en/dev/topics/auth/customizing/

About

two factor authentication with LinOTP for django and djangoCMS

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0