On Tue, Nov 11, 2008 at 2:37 PM, Chen, Peter <[EMAIL PROTECTED]> wrote: > May I ask about the httpd conf file for your apache2.2.10? > > Here are the LoadModule lines that I believe are relevant:
You probably don't need these; if you don't have a 'Require User someusername' directive in your httpd.conf auth_basic won't be used. You can remove these or comment them out. Apache will throw an error on startup if there is a directive that requires one of these modules. > LoadModule authn_file_module modules/mod_authn_file.so > LoadModule authn_dbm_module modules/mod_authn_dbm.so > LoadModule authn_anon_module modules/mod_authn_anon.so > LoadModule authn_dbd_module modules/mod_authn_dbd.so > LoadModule authn_default_module modules/mod_authn_default.so > LoadModule authz_host_module modules/mod_authz_host.so > LoadModule authz_groupfile_module modules/mod_authz_groupfile.so > LoadModule authz_user_module modules/mod_authz_user.so > LoadModule authz_dbm_module modules/mod_authz_dbm.so > LoadModule authz_owner_module modules/mod_authz_owner.so > LoadModule authnz_ldap_module modules/mod_authnz_ldap.so > LoadModule authz_default_module modules/mod_authz_default.so > LoadModule auth_basic_module modules/mod_auth_basic.so > LoadModule auth_digest_module modules/mod_auth_digest.so > > ------------------------------------------------------------- > And what I attempted to do to disable them: > > #<Location /> > #AuthBasicAuthoritative Off > #AuthDigestNcCheck Off > #AuthzDefaultAuthoritative Off > #AuthzUserAuthoritative Off > #AuthzOwnerAuthoritative Off > #AuthzDBMAuthoritative Off > #AuthzGroupFileAuthoritative Off > #</Location> > > Thanks!
