1
0
Fork 0
mirror of https://github.com/Luzifer/nginx-sso.git synced 2025-04-17 12:41:51 +00:00

Prefer simple authenticator over LDAP

Allows to have local accounts that always work, even if there are LDAP
problems
This commit is contained in:
Maximilian Gaß 2019-06-14 12:03:11 +02:00
parent 07f10142d1
commit 3f2f010891

View file

@ -14,11 +14,11 @@ import (
)
func registerModules() {
registerAuthenticator(simple.New(cookieStore))
registerAuthenticator(crowd.New())
registerAuthenticator(ldap.New(cookieStore))
registerAuthenticator(google.New(cookieStore))
registerAuthenticator(oidc.New(cookieStore))
registerAuthenticator(simple.New(cookieStore))
registerAuthenticator(token.New())
registerAuthenticator(auth_yubikey.New(cookieStore))