Multiple authentication backend
Presentation
This backend allows to chain authentication method, for example to failback to LDAP authentication if Kerberos authentication failed.Configuration
You have to use "Multi" as authentication scheme. This scheme expect a parameter, which is the authentication chain. For example:authentication => 'Multi CAS;LDAP',
If CAS failed, LDAP will be used.
You can also add a condition. Example:
authentication => 'Multi Remote $ENV{REMOTE_ADDR}=~/^192/;LDAP $ENV{REMOTE_ADDR}!~/^192/'