WritingPlugins refers to ExtendingCatalyst now
[catagits/Catalyst-Manual.git] / 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