Hello,
I was fairly happy with my Mercurial setup until now. I use it for personal projects and it is hosted on a shared server at OVH (a French hosting provider).
Currently, I have a .htaccess to protect my projects and only allow certain people to pull/push from my repositories. However, I would like to make the changesets archives public.
The URLs look like this :
http://domain/hg/projectname/archive/486e5be13c82.tar.bz2
http://domain/hg/projectname/archive/tip.tar.bz2
My .htaccess looks like this :
AuthUserFile /home/******/.hgusers
AuthName "Mercurial"
AuthType Basic
Order allow,deny
Allow from all
Require valid-user
And I would like to have the archive URLs to not ask a username/password. I don't mind using mod_rewrite for that. Thanks!
Remi Gillig.