Fixed a bug with the HTTP engine where very large response bodies would not be sent...
[catagits/Catalyst-Runtime.git] / t / conf / extra.conf.in
CommitLineData
690ee036 1<IfDefine !APACHE1>
2 # Needed to pass some %2F tests
3 AllowEncodedSlashes on
4</IfDefine>
5
58f5682a 6# CGI
7<IfModule @CGI_MODULE@>
ffd92403 8 ScriptAlias /cgi/ @ServerRoot@/tmp/TestApp/script/testapp_cgi.pl/
0bcb98c7 9
10 # REDIRECT_URL test
11 <IfModule mod_rewrite.c>
12 <Location /rewrite>
13 RewriteEngine on
14 RewriteRule /rewrite/(.*) /cgi/$1
15 </Location>
16 </IfModule>
58f5682a 17</IfModule>
18
19# FastCGI
20<IfModule mod_fastcgi.c>
ffd92403 21 FastCgiIpcDir @ServerRoot@/tmp/tmp
0bcb98c7 22 FastCgiServer @ServerRoot@/tmp/TestApp/script/testapp_fastcgi.pl -idle-timeout 300 -processes 1
ffd92403 23 ScriptAlias /fastcgi/ @ServerRoot@/tmp/TestApp/script/testapp_fastcgi.pl/
58f5682a 24</IfModule>