Forum Moderators: phranque

Message Too Old, No Replies

Setting cgi-bin in home folders...

         

tine

4:30 pm on May 25, 2004 (gmt 0)



Hello :)
I have tried modifying the httpd.conf file to try to get CGI working in a directory like /home/username/public_html and all the subdirectories under that one...

Right now this is what the file looks like,

<Directory /home/*/public_html>
Options MultiViews Indexes FollowSymLinks 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>
...
AddHandler cgi-script .cgi

From this snippet, will all subdirectories be allowed CGI? And will the POST method be allowed to be used as well?
Just wanted to make sure so I won't have to pester the sys admin too many times ^^;;;

Thanks in advance :)