This repository has been archived on 2020-02-15. You can view files and clone it, but cannot push or open issues/pull-requests.
ldap-forward-auth/httpd.conf

54 lines
1.3 KiB
ApacheConf

ServerRoot "/usr/local/apache2"
ServerName "localhost"
Listen 80
LoadModule mpm_event_module modules/mod_mpm_event.so
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule authn_core_module modules/mod_authn_core.so
LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
LoadModule authz_core_module modules/mod_authz_core.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule ldap_module modules/mod_ldap.so
LoadModule mime_module modules/mod_mime.so
LoadModule unixd_module modules/mod_unixd.so
LoadModule dir_module modules/mod_dir.so
User daemon
Group daemon
DocumentRoot "/srv/www"
<Location "/user">
AuthName "forward auth"
AuthBasicProvider ldap
AuthType Basic
AuthLDAPURL "ldap://@@LDAP_SERVER@@/@@LDAP_BASE@@?uid" "STARTTLS"
AuthLDAPBindDN "@@LDAP_USER@@"
AuthLDAPBindPassword "@@LDAP_PASSWORD@@"
DirectoryIndex index.html
Require valid-user
</Location>
<Location "/mail">
AuthName "forward auth"
AuthBasicProvider ldap
AuthType Basic
AuthLDAPURL "ldap://@@LDAP_SERVER@@/@@LDAP_BASE@@?mail" "STARTTLS"
AuthLDAPBindDN "@@LDAP_USER@@"
AuthLDAPBindPassword "@@LDAP_PASSWORD@@"
DirectoryIndex index.html
Require valid-user
</Location>
ErrorLog /proc/self/fd/2
LogLevel warn
TypesConfig conf/mime.types