blob: 16549b1a52df037b69118f2ae17e0994a7a633fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Sample HTTPAUTH configuration file
# Listen on a TCP port
Socket: 0.0.0.0
# ----------------------------------------------------
# This is the beginning of an Simple method section
[Simple:LocalUsers]
# Displayed to the user
Realm: Local Users
# The file
PasswordFile: /usr/data/localusers.pw
# ----------------------------------------------------
# This is the beginning of an LDAP method section
[LDAP:AllUsers]
# Displayed to the user
Realm: Users
LDAPServers: ldap.test.com
LDAPDoBind: True
LDAPDNMap: cn=%u,dc=test,dc=com
LDAPFilter: (objectClass=person)
|