mod_fastcgi catch all ?
Fabrice Bacchella <[email protected]> Fri, 10 Sep 2010 16:33:36 +0200
| Newsgroups | gmane.comp.web.fastcgi.devel |
|---|---|
| Message-ID | <[email protected]> |
I'm very surprised how greedy fast_cgi is.
My httpd.conf just contains :
LoadModule fastcgi_module /usr/lib64/httpd/modules/mod_fastcgi.so
<VirtualHost *>
ServerName myweb.com
DocumentRoot /myweb/htdocs
FastCGIExternalServer /myweb/htdocs -host remotehost:9000
<Directory /myweb/htdocs >
Allow from all
</Directory>
</VirtualHost>
And it's enough to have fastcgi sends all queries to remhost. Shouldn't an Action, AddHandler be needed ?
.htaccess is not allowed in my setup, so I'm sure there is nothing like that laying around.