add .fcgi to the end of fastcgi paths
Jonathan Rockway [Wed, 14 Feb 2007 02:06:20 +0000 (02:06 +0000)]
lib/Catalyst/Manual/Cookbook.pod

index 35e008c..89cc05d 100644 (file)
@@ -1669,11 +1669,11 @@ Now, we simply configure Apache to connect to the running server.
     Alias /_errors /var/www/MyApp/root/error-pages
     ErrorDocument 502 /_errors/502.html
 
-    FastCgiExternalServer /tmp/myapp -socket /tmp/myapp.socket
-    Alias /myapp/ /tmp/myapp/
+    FastCgiExternalServer /tmp/myapp.fcgi -socket /tmp/myapp.socket
+    Alias /myapp/ /tmp/myapp.fcgi/
     
     # Or, run at the root
-    Alias / /tmp/myapp/
+    Alias / /tmp/myapp.fcgi/
     
 =head3 More Info