Re: Questions configuring Apache for FastCGI
Pavel Kolesnikov (pavel@linux.terminal.cz)
Thu, 23 Jan 1997 12:53:24 +0100 (MET)
Date: Thu, 23 Jan 1997 12:53:24 +0100 (MET)
From: Pavel Kolesnikov <pavel@linux.terminal.cz>
To: FastCGI Mailing List <fastcgi-developers@OpenMarket.com>
Subject: Re: Questions configuring Apache for FastCGI
In-Reply-To: <Pine.NXT.3.95.970122175909.5529A-100000@litoria>
Message-Id: <Pine.LNX.3.91.970123124516.13272D-100000@linux.terminal.cz>
> FastCgiIpcDir: Need read/write/exec permission on directory
>
> The config file has in it:
> FastCgiIpcDir /home/bin/apache_1.2b4/logs/fcgi-socket-files
>
> and an ls -l on fcgi-socket-files shows:
> drwxrwxrwx 2 root 512 Jan 22 10:22 fcgi-socket-files
And ... doesn't ls -l on logs show for example st like:
drwxrwx--- 2 root 512 Jan 22 10:22 logs
Sorry if it seems too simple ... just an idea :-)
> and having all fcgi programs end in .fcg. What I'd like is to have a
> /fcgi-bin directory where all of the fcgi programs, but the directive
Try:
<Directory /home/www/www2/fcgi-bin>
ForceType application/x-httpd-fcgi
</Directory>
or maybe better see
http://www.apache.org/docs/mod/mod_mime.html#forcetype
Pavel Kolesnikov