My apache config:
GNU nano 2.2.6 File: /etc/apache2/conf.d/hg.config
# Use PerlLoadModule Apache2::Redmine when using apache2, or else you might get$
PerlLoadModule Apache::Redmine
ScriptAliasMatch ^/repos/hg(.*) "/var/mercurial/hgwebdir.cgi$1"
#ScriptAlias /repos/hg "/var/mercurial/hgwebdir.cgi"
<Location /repos/hg>
AuthType Basic
AuthName "Redmine Mercurial Repository"
Require valid-user
#Redmine auth
PerlAccessHandler Apache::Authn::Redmine::access_handler
PerlAuthenHandler Apache::Authn::Redmine::authen_handler
RedmineDSN "DBI:mysql:database=redmine;host=localhost"
RedmineDbUser "redmine"
RedmineDbPass "xxxxxx"
</Location>
When I enter tracker.dev01/repos/hg
it asks for password, but when I enter tracker.dev01/repos/hg/test
it shows me the repo without password.
Any help?
Thanks!