<Directory /usr/local/etc/httpd/htdocs>
#Value for the Options
directive can include:
#"None", "All", or any combination
of "Indexes",
#"Includes", "FollowSymLinks",
"ExecCGI", or
#"MultiViews". Note that "MultiViews"
is not
#included with "All"
Options Indexes FollowSymLinks
#The AllowOverride
directive controls which options
#the local access control files in directories can
#override. The values can also be "All",
or any
#combination of "Options", "FileInfo",
"AuthConfig",
#and "Limit"
AllowOverride None
#The Limit directive
controls who can get access
#resources from your server. The Limit directive can
#specifically identify access restrictions made using
#methods such as POST, GET, PUT, DELETE, etc. If no
#method is specified, then the access restrictions
#are placed on all methods.
<Limit>
order allow,deny
allow from all
</Limit>
</Directory>
#/usr/local/etc/httpd/cgi-bin
should be changed to
#the value of your ScriptAlias definition
<Directory /usr/local/etc/httpd/cgi-bin>
AllowOverride None
Options None
</Directory>
For more information,
see the following documentation at the Apache Web Site: