summaryrefslogtreecommitdiffstats
path: root/vagrant_support/apache.j2
blob: 722ebad9254470926445b54f62f7c4ce76ed7aad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
PerlSwitches -wT
PerlSetEnv USE_NYTPROF 0
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>