mirror of
https://github.com/adferrand/docker-backuppc.git
synced 2023-11-05 04:40:26 +01:00
06c82b416a
* Enable authiorization against active diretory / LDAP * fix type in readme * fix table in readme * fix table in readme * add LDAP auth Co-authored-by: Adrien Ferrand <ferrand.ad@gmail.com>
12 lines
566 B
Plaintext
12 lines
566 B
Plaintext
server.modules += ( "mod_authn_ldap" )
|
|
auth.backend = "ldap"
|
|
auth.backend.ldap.hostname = "LDAP_HOSTNAME"
|
|
auth.backend.ldap.base-dn = "LDAP_BASE_DN"
|
|
auth.backend.ldap.filter = "LDAP_FILTER"
|
|
auth.backend.ldap.allow-empty-pw = "disable"
|
|
|
|
auth.backend.ldap.bind-dn = "LDAP_BIND_DN"
|
|
auth.backend.ldap.bind-pw = "LDAP_BIND_PW"
|
|
|
|
auth.require = ( "/BackupPC_Admin" => ( "method" => "basic", "realm" => "BackupPC", "require" => "valid-user" ) )
|