Forum Moderators: bakedjake
<Directory />
Options FollowSymLinks ExecCGI Includes
AllowOverride All
</Directory>
This lets me execute CGIs from any directory.
Instead of / you can use the full path name to your cgi-local directory.
Check to make sure that your cgi-bin directory works first, before changing the config.
# "/usr/local/apache/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "/usr/local/apache/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
</IfModule>
# End of aliases.
I assume I need the change "<Directory "/usr/local/apache/cgi-bin">" to <Directory "/usr/local/apache/cgi-local"> if I want my cgi scripts to run from there.