summaryrefslogtreecommitdiffstats
path: root/vagrant_support/apache.j2
diff options
context:
space:
mode:
Diffstat (limited to 'vagrant_support/apache.j2')
-rw-r--r--vagrant_support/apache.j221
1 files changed, 21 insertions, 0 deletions
diff --git a/vagrant_support/apache.j2 b/vagrant_support/apache.j2
new file mode 100644
index 000000000..1de3d8faa
--- /dev/null
+++ b/vagrant_support/apache.j2
@@ -0,0 +1,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>