http://httpd.apache.org/docs/2.2/howto/cgi.html

I do not understand the paragrph "User directories":

quote:
To allow CGI program execution for any file ending in .cgi in users'
directories, you can use the following configuration.

<Directory /home/*/public_html>
Options +ExecCGI
AddHandler cgi-script .cgi
</Directory>

If you wish designate a cgi-bin subdirectory of a user's directory
where everything will be treated as a CGI program, you can use the
following.

<Directory /home/*/public_html/cgi-bin>
Options ExecCGI
SetHandler cgi-script
</Directory>
-----------------

Why in the second case "SetHandleer" is used instead of "Addhandler" ?
And why "execCGI" does not have the "+" in front?

---------------------------------------------------------------------
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]

Reply via email to