Added automated tests for CGI and FastCGI using Apache::Test
[catagits/Catalyst-Runtime.git] / t / conf / extra.conf.in
diff --git a/t/conf/extra.conf.in b/t/conf/extra.conf.in
new file mode 100644 (file)
index 0000000..e2e467b
--- /dev/null
@@ -0,0 +1,11 @@
+# CGI
+<IfModule @CGI_MODULE@>
+    ScriptAlias /cgi/ @ServerRoot@/var/TestApp/script/testapp_cgi.pl/
+</IfModule>
+
+# FastCGI
+<IfModule mod_fastcgi.c>
+    FastCgiIpcDir @ServerRoot@/var/tmp
+    FastCgiServer @ServerRoot@/var/TestApp/script/testapp_fastcgi.pl -idle-timeout 300 -processes 5
+    ScriptAlias /fastcgi/ @ServerRoot@/var/TestApp/script/testapp_fastcgi.pl/
+</IfModule>