Added notes regarding slash encoding in Catalyst
August [Thu, 9 Sep 2010 02:30:24 +0000 (22:30 -0400)]
README
lib/Gitalist.pm

diff --git a/README b/README
index e0c80c7..2e7feaa 100644 (file)
--- a/README
+++ b/README
@@ -163,7 +163,7 @@ RUNNING
             #change the below to fastcgi-script if using mod_fcgi
             SetHandler fcgid-script
         </Files>
-                       </VirtualHost>
+       </VirtualHost>
                        
         Now to access your gitalist instance, you'll go to gitalist.yourdomain.com/gitalist.fcgi/ 
         (DO NOT FORGET THAT TRAILING /). If you'd like a different URL, of course, you'll likely want to use 
@@ -171,6 +171,9 @@ RUNNING
                        
         If you find the need to do some troubleshooting, you can call http://url_to_gitalist.fcgi?dump_info=1
         and/or add export GITALIST_DEBUG=1 to the top of you gitalist.fcgi file (just below the shebang line).
+
+        Also, note that  Apache will refuse %2F in Gitalist URL's unless configured otherwise. Make sure
+        "AllowEncodedSlashes On" is in your httpd.conf file in order for this to run smoothly.
                
 
 CONTRIBUTING
index 441ea63..499ac7b 100644 (file)
@@ -227,7 +227,7 @@ This example can be seen live here:
             #change the below to fastcgi-script if using mod_fcgi
             SetHandler fcgid-script
         </Files>
-                       </VirtualHost>
+      </VirtualHost>
                        
         Now to access your gitalist instance, you'll go to gitalist.yourdomain.com/gitalist.fcgi/ 
         (DO NOT FORGET THAT TRAILING /). If you'd like a different URL, of course, you'll likely want to use 
@@ -236,6 +236,9 @@ This example can be seen live here:
         If you find the need to do some troubleshooting, you can call http://url_to_gitalist.fcgi?dump_info=1
         and/or add export GITALIST_DEBUG=1 to the top of you gitalist.fcgi file (just below the shebang line).
                
+        Also, note that  Apache will refuse %2F in Gitalist URL's unless configured otherwise. Make sure
+        "AllowEncodedSlashes On" is in your httpd.conf file in order for this to run smoothly.
+
 
 =head1 CONTRIBUTING