blob: 1de3d8faa77fecab513f8059c06dbe9831ad6899 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
PerlSwitches -wT
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 All
Allow from all
</Directory>
</VirtualHost>
|