[vox-tech] cgi-bin in user home dirs
Tim Riley
vox-tech@lists.lugod.org
Tue, 11 Feb 2003 11:27:05 -0800
Jim Angstadt wrote:
> <snip>
>
> The httpd.conf file contains:
>
> ScriptAlias /cgi-ja/ "/home/ja/cgi-bin/"
> <Directory "/home/ja/cgi-bin/">
> AllowOverride None
> Options None
> Order allow,deny
> Allow from all
> </Directory>
>
> httpd has been restarted.
>
> http://localhost/~ja/cgi-ja/test.cgi is entered into
> the browser location bar and "Not Found" is the
> response.
>
Try http://localhost/cgi-ja/test.cgi. Apache should
map "cgi-ja" to "/home/ja/cgi-bin" because of the
ScriptAlias entry.
>
<snip>