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