lemonldap-ng/_example/etc/test-apache2.4.conf

40 lines
1.1 KiB
Plaintext
Raw Normal View History

2014-03-05 13:21:41 +01:00
#====================================================================
# Apache configuration for LemonLDAP::NG sample applications
#====================================================================
2017-02-11 08:47:22 +01:00
PerlModule Lemonldap::NG::Handler::ApacheMP2::Menu
2014-03-05 13:21:41 +01:00
# Sample application
<VirtualHost __VHOSTLISTEN__>
ServerName test1.__DNSDOMAIN__
ServerAlias test2.__DNSDOMAIN__
# SSO protection
PerlHeaderParserHandler Lemonldap::NG::Handler::ApacheMP2
2014-03-05 13:21:41 +01:00
# DocumentRoot
DocumentRoot __TESTDIR__
<Directory __TESTDIR__>
Require all granted
Options +ExecCGI
</Directory>
# Perl script (application test is written in Perl)
<Files *.pl>
SetHandler perl-script
PerlResponseHandler ModPerl::Registry
# Display Menu
2017-02-11 08:47:22 +01:00
PerlOutputFilterHandler Lemonldap::NG::Handler::ApacheMP2::Menu->run
2014-03-05 13:21:41 +01:00
</Files>
# Directory index
<IfModule mod_dir.c>
DirectoryIndex index.pl index.html
</IfModule>
# Uncomment this if site if you use SSL only
#Header set Strict-Transport-Security 15768000
2014-03-05 13:21:41 +01:00
</VirtualHost>