aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/share/perl/conf/httpd-vhosts.conf
blob: 447150ffb06205d31e88c386c4fd5913717499e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
LoadModule perl_module modules/mod_perl.so
PerlRequire "conf/mod_perl-startup.pl"

NameVirtualHost *:80
<VirtualHost *:80>
        ServerName opensim.lulu
        ServerAdmin webmaster@opensim.lulu
        DocumentRoot /home/lulu/temp/opensim
        ErrorLog logs/opensim-error_log
        CustomLog logs/opensim-access_log common

        <Directory "/home/lulu/temp/opensim">
            Options MultiViews All
            AllowOverride None
            Order allow,deny
            Allow from all
        </Directory>

	<Files ~ "\.cgi$">
                SetHandler perl-script
                PerlResponseHandler ModPerl::Registry
                PerlOptions +ParseHeaders
	</Files>
</VirtualHost>