summaryrefslogtreecommitdiffstats
path: root/vagrant_support/apache.j2
blob: 8316f1aa2662ab90b41832a7203533b46424e4b7 (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
PerlPassEnv LOG4PERL_CONFIG_FILE
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>