lemonldap-ng/build/lemonldap-ng/debian/handler-apache.conf
Xavier Guimard 6d66965b7a LEMONLDAP::NG :
* UTF8 support in Manager
		* Beginning of Debian-like installation for other distributions
2008-06-13 14:35:50 +00:00

27 lines
729 B
Plaintext

<VirtualHost *>
ServerName protected.example.com
PerlRequire /var/lib/lemonldap-ng/handler/MyHandler.pm
# Area protection
PerlHeaderParserHandler My::Package
# Configuration reload mechanism (only 1 per physical server is
# needed): choose your URL to avoid restarting Apache when
# configuration change
<Location /reload>
Order deny,allow
Deny from all
Allow from 127.0.0.0/8
PerlHeaderParserHandler My::Package->refresh
</Location>
# Uncomment this to activate status module
#<Location /status>
# Order deny,allow
# Deny from all
# Allow from 127.0.0.0/8
# PerlHeaderParserHandler My::Package->status
#</Location>
</VirtualHost>