Displaying 1 result from an estimated 1 matches for "fgci_ipc".
Did you mean:
fcgi_ipc
2006 Aug 07
1
apache-fcgi - multiple applications on same server
...e a server running apache-1.3 with mod_fastcgi that''s happily
running a rails application. Life is good ;)
I would like to setup another application (vhost) on the same server..
How to do ?
My httpd.conf says:
<snip>
# fastcgi
<IfModule mod_fastcgi.c>
FastCgiIpcDir /tmp/fgci_ipc
AddHandler fastcgi-script .fcgi
FastCgiServer /my/path/to/rails/my_app1/public/dispatch.fcgi \
-initial-env RAILS_ENV=production \
-processes 4 -idle-timeout 120
</IfModule>
</snip>
I guess I somehow have to tell apache to use
/my/path/to/rails/another_app2/pub...