Added automated tests for CGI and FastCGI using Apache::Test
[catagits/Catalyst-Runtime.git] / t / conf / extra.conf.in
1 # CGI
2 <IfModule @CGI_MODULE@>
3     ScriptAlias /cgi/ @ServerRoot@/var/TestApp/script/testapp_cgi.pl/
4 </IfModule>
5
6 # FastCGI
7 <IfModule mod_fastcgi.c>
8     FastCgiIpcDir @ServerRoot@/var/tmp
9     FastCgiServer @ServerRoot@/var/TestApp/script/testapp_fastcgi.pl -idle-timeout 300 -processes 5
10     ScriptAlias /fastcgi/ @ServerRoot@/var/TestApp/script/testapp_fastcgi.pl/
11 </IfModule>