* UTF8 support in Manager * Beginning of Debian-like installation for other distributionsenvironments/ppa-mbqj77/deployments/1
parent
e1b8027ccd
commit
6d66965b7a
@ -1,2 +1,2 @@ |
||||
debian/tmp/var/lib/lemonldap-ng/handler/* |
||||
debian/handler-apache*.conf |
||||
debian/tmp/var/lib/lemonldap-ng/apache*-protected-area.conf |
||||
|
@ -1,38 +1,43 @@ |
||||
PerlOptions +GlobalRequest |
||||
<VirtualHost 127.0.0.3:*> |
||||
|
||||
ServerName test.example.com |
||||
PerlRequire __DIR__/handler/MyHandler.pm |
||||
PerlHeaderParserHandler My::Package |
||||
<Location /reload> |
||||
Order deny,allow |
||||
Deny from all |
||||
Allow from 127.0.0.0/8 |
||||
PerlHeaderParserHandler My::Package->refresh |
||||
</Location> |
||||
ServerName test.example.com |
||||
PerlRequire __DIR__/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> |
||||
#<Location /status> |
||||
# Order deny,allow |
||||
# Deny from all |
||||
# Allow from 127.0.0.0/8 |
||||
# PerlHeaderParserHandler My::Package->status |
||||
#</Location> |
||||
|
||||
# Just to make example running (index.pl display authenticated user) |
||||
DocumentRoot __DIR__ |
||||
<Directory __DIR__> |
||||
Order allow,deny |
||||
Allow from all |
||||
Options +ExecCGI |
||||
</Directory> |
||||
<Files *.pl> |
||||
SetHandler perl-script |
||||
PerlResponseHandler ModPerl::Registry |
||||
</Files> |
||||
# Just to make example running (index.pl display authenticated user) |
||||
DocumentRoot __DIR__ |
||||
<Directory __DIR__> |
||||
Order allow,deny |
||||
Allow from all |
||||
Options +ExecCGI |
||||
</Directory> |
||||
<Files *.pl> |
||||
SetHandler perl-script |
||||
PerlResponseHandler ModPerl::Registry |
||||
</Files> |
||||
|
||||
<IfModule mod_dir.c> |
||||
DirectoryIndex index.pl index.html |
||||
</IfModule> |
||||
<IfModule mod_dir.c> |
||||
DirectoryIndex index.pl index.html |
||||
</IfModule> |
||||
|
||||
</VirtualHost> |
||||
|
Loading…
Reference in new issue