I’ve been following the hginit.com tutorial on how to use mercurial. Everything is going fine except it uses push_ssl=False. This does not work for my situation because I want pushes (and pulls if possible) to be secure. All the tutorials I’ve been able to find also use push_ssl=False. Can anyone give me pointers on how to set up ssl/security for Mercurial? Thanks.
I’ve been following the hginit.com tutorial on how to use mercurial. Everything is going
Share
Keep in mind Mercurial doesn’t validate SSL certificates. It’s safer to serve mercurial over SSH (which is easy to setup assuming your repo server has ssh on it).
If you want to use https, the official guide should have the steps in detail, I believe.