diff options
author | Stef Walter <stef@memberwebs.com> | 2004-04-29 03:55:57 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2004-04-29 03:55:57 +0000 |
commit | 2c1dec428c6e1d1bb6675847a5046a4fabdfe4c4 (patch) | |
tree | 84c3f1140691b33933c073c78ba52ca6d8eafcac /doc/httpauthd.conf.sample | |
parent | f9df80773a7a6a08e62d2073154edf0c76f1f209 (diff) |
- Added documentation
- Fixed bugs
- Added support for dns to sock_any
Diffstat (limited to 'doc/httpauthd.conf.sample')
-rw-r--r-- | doc/httpauthd.conf.sample | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/doc/httpauthd.conf.sample b/doc/httpauthd.conf.sample new file mode 100644 index 0000000..f5e1e87 --- /dev/null +++ b/doc/httpauthd.conf.sample @@ -0,0 +1,34 @@ + +# Sample HTTPAUTH configuration file + +# Listen on a TCP port +Socket: 0.0.0.0 + +# Only perform Digest authentication +AuthTypes: Digest + +# ---------------------------------------------------- +# This is the beginning of an Simple method section +[Simple] + +# Give the method a name +Alias: LocalUsers + +# The file +PasswordFile: /usr/data/localusers.pw + + + + +# ---------------------------------------------------- +# This is the beginning of an LDAP method section +[LDAP] + +# Give the method a name +Alias: AllUsers + +LDAPServers: ldap.test.com +LDAPDoBind: True +LDAPDNMap: cn=%u,dc=test,dc=com +LDAPFilter: (objectClass=person) + |