I'm trying to get index.cgi to be called when requesting just cgi-bin
instead I get "Forbidden
You don't have permission to access /cgi-bin/ on this server"
in the errorlog:
[Wed Oct 25 13:22:15 2000] [error] [client 134.216.191.61] attempt to invoke directory as script: /apps/apache/cgi-bin
The config appears to be right -- what am I missing / all other indexes, and CGIs work as expected.
#
# DirectoryIndex: Name of the file or files to use as a pre-written HTML
# directory index. Separate multiple entries with spaces.
#
<IfModule mod_dir.c>
DirectoryIndex index.html index.cgi index.php index.htm index.shtml
</IfModule>
ScriptAlias /cgi-bin/ "/apps/apache/cgi-bin/"
<Directory "/apps/apache/cgi-bin">
AllowOverride None
Options Indexes
Order allow,deny
Allow from all
</Directory>
instead I get "Forbidden
You don't have permission to access /cgi-bin/ on this server"
in the errorlog:
[Wed Oct 25 13:22:15 2000] [error] [client 134.216.191.61] attempt to invoke directory as script: /apps/apache/cgi-bin
The config appears to be right -- what am I missing / all other indexes, and CGIs work as expected.
#
# DirectoryIndex: Name of the file or files to use as a pre-written HTML
# directory index. Separate multiple entries with spaces.
#
<IfModule mod_dir.c>
DirectoryIndex index.html index.cgi index.php index.htm index.shtml
</IfModule>
ScriptAlias /cgi-bin/ "/apps/apache/cgi-bin/"
<Directory "/apps/apache/cgi-bin">
AllowOverride None
Options Indexes
Order allow,deny
Allow from all
</Directory>