aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/share/perl/conf
diff options
context:
space:
mode:
Diffstat (limited to 'share/perl/conf')
-rw-r--r--share/perl/conf/httpd-vhosts.conf25
-rwxr-xr-xshare/perl/conf/mod_perl-startup.pl34
2 files changed, 0 insertions, 59 deletions
diff --git a/share/perl/conf/httpd-vhosts.conf b/share/perl/conf/httpd-vhosts.conf
deleted file mode 100644
index 447150f..0000000
--- a/share/perl/conf/httpd-vhosts.conf
+++ /dev/null
@@ -1,25 +0,0 @@
1LoadModule perl_module modules/mod_perl.so
2PerlRequire "conf/mod_perl-startup.pl"
3
4NameVirtualHost *:80
5<VirtualHost *:80>
6 ServerName opensim.lulu
7 ServerAdmin webmaster@opensim.lulu
8 DocumentRoot /home/lulu/temp/opensim
9 ErrorLog logs/opensim-error_log
10 CustomLog logs/opensim-access_log common
11
12 <Directory "/home/lulu/temp/opensim">
13 Options MultiViews All
14 AllowOverride None
15 Order allow,deny
16 Allow from all
17 </Directory>
18
19 <Files ~ "\.cgi$">
20 SetHandler perl-script
21 PerlResponseHandler ModPerl::Registry
22 PerlOptions +ParseHeaders
23 </Files>
24</VirtualHost>
25
diff --git a/share/perl/conf/mod_perl-startup.pl b/share/perl/conf/mod_perl-startup.pl
deleted file mode 100755
index e8bdb2c..0000000
--- a/share/perl/conf/mod_perl-startup.pl
+++ /dev/null
@@ -1,34 +0,0 @@
1# Taken from http://perl.apache.org/docs/2.0/user/handlers/server.html#Startup_File
2
3if ( ! $ENV{MOD_PERL}) { die "GATEWAY_INTERFACE not Perl!"; }
4
5# !!! set this to your opensim's lib
6use lib qw(/home/lulu/temp/opensim/lib);
7
8# enable if the mod_perl 1.0 compatibility is needed
9# use Apache2::compat ();
10
11# preload all mp2 modules
12# use ModPerl::MethodLookup;
13# ModPerl::MethodLookup::preload_all_modules();
14
15use ModPerl::Util (); #for CORE::GLOBAL::exit
16
17use Apache2::RequestRec ();
18use Apache2::RequestIO ();
19use Apache2::RequestUtil ();
20
21use Apache2::ServerRec ();
22use Apache2::ServerUtil ();
23use Apache2::Connection ();
24use Apache2::Log ();
25
26use APR::Table ();
27
28use ModPerl::Registry ();
29
30use Apache2::Const -compile => ':common';
31use APR::Const -compile => ':common';
32
33
341;