Apache 1.3x if I have directive in the httpd.conf requiring password for 'admin' access,
how can I override it with a local .htaccess to ALLOW access with no password to a particular vhost ? I've looked on Apache docs, but I only found how to set access control, rather than disable, which is what I need this is what I have in the main httpd.conf <Directory /home/*/www/admin*> AllowOverride None AuthUserFile /etc/httpd/conf/.htaccess AuthGroupFile /null AuthName "Staff use only" AuthType Basic Require valid-user </Directory> Voytek Eymont -- SLUG - Sydney Linux User's Group - http://slug.org.au/ More Info: http://lists.slug.org.au/listinfo/slug
