|
ok.. i have got two entries as in /etc/httpd/conf/commonhttpd.conf, Directory /var/www/cgi-bin and other is as Directory /var/www/protected-cgi-bin
<Directory /var/www/cgi-bin>
AllowOverride All
Options ExecCGI
<IfModule mod_access.c>
Order allow,deny
Allow from all
</IfModule>
</Directory>
<Directory /var/www/protected-cgi-bin>
AllowOverride All
Options ExecCGI
<IfModule mod_access.c>
Order deny,allow
Deny from all
Allow from 127.0.0.1
#allow from .your_domain.com
</IfModule>
</Directory>
Last edited by soroccoheaven; 09-22-2007 at 12:20 PM..
|