Is it possible to setup Apache so that I can run CGI scripts anywhere inside public_html? I tried modifing the
part of /etc/httpd/conf/httpd.conf to:
But that didnt help any..
Any ideas?
Code:
<Directory /home/*/public_html> [..] </Directory>
Code:
<Directory /home/*/public_html>
AllowOverride All
Options MultiViews Indexes SymLinksIfOwnerMatch Includes ExecCGI
<Limit GET POST OPTIONS PROPFIND>
Order allow,deny
Allow from all
</Limit>
<LimitExcept GET POST OPTIONS PROPFIND>
Order deny,allow
Deny from all
</LimitExcept>
</Directory>
But that didnt help any..
Any ideas?
