blob: 3135d8c258e9a53c365e7f5d207b2245b3af39e4 (
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
|
PerlSwitches -wT
PerlSetEnv USE_NYTPROF 0
PerlSetEnv BUGZILLA_UNSAFE_AUTH_DELEGATION 1
PerlSetEnv LOG4PERL_CONFIG_FILE log4perl-vagrant.conf
PerlSetEnv LOG4PERL_STDERR_DISABLE 1
PerlConfigRequire /vagrant/mod_perl.pl
<IfModule mpm_prefork_module>
StartServers 2
MinSpareServers 2
MaxSpareServers 2
MaxClients 200
MaxRequestsPerChild 4500
</IfModule>
<VirtualHost *:80>
KeepAlive Off
DocumentRoot "/vagrant"
<Directory "/vagrant">
DirectoryIndex index.cgi
Options Indexes FollowSymLinks ExecCGI
AllowOverride None
Allow from all
</Directory>
</VirtualHost>
|