At 01:24 PM 5/7/2007, you wrote:
On 5/7/07, Joe Demeny <[EMAIL PROTECTED]> wrote:
Hello,
I don't seem to be able to make CGI work within <VirtualHost>.
Here is my VirtualHost block:
<VirtualHost *:80>
<Directory "/home/shop1/cgi-bin/">
Options ExecCGI
SetHandler cgi-script
</Directory>
Everything inside the <Directory> section is redundant because it is
implied by the ScriptAlias:
ScriptAlias /cgi-bin/ /home/shop1/cgi-bin/
The test-cgi script works fine from the command line. However, I get a
"Forbidden" message, and the log file entry is "client denied by
server configuration: /home/shop1/cgi-bin/test-cgi"
Try adding
Order allow,deny
Allow from all
to the <Directory> section above.
Joshua.
Thank you for the quick reply.
It never occurred to me that I needed to add these permissions in the
<Directory> section.
In the main configuration part I have user directories defined as:
<Directory /home/*/htdocs>
AllowOverride None
Order allow,deny
Allow from all
</Directory>
I assumed that this definition was going to be "inherited" by the
<VirtualHost> directives.
Joe
---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
" from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]