# HG changeset patch # User Sebastien Jodogne # Date 1602675339 -7200 # Node ID 53901a601ea2b5f92e054aff8c6086a856f58961 # Parent a3c98aa2b94a3b50b9e494abb2323de6ad04641d fix diff -r a3c98aa2b94a -r 53901a601ea2 Sphinx/source/developers/repositories.rst --- a/Sphinx/source/developers/repositories.rst Wed Oct 14 12:55:32 2020 +0200 +++ b/Sphinx/source/developers/repositories.rst Wed Oct 14 13:35:39 2020 +0200 @@ -84,7 +84,7 @@ configuration. Add the following lines to your ``~/.hgrc`` file:: [hostfingerprints] - hg.orthanc-server.com = 5D:28:35:52:52:F9:D1:1C:C1:B5:CF:47:F0:9C:F8:1D:B0:4D:F1:BD + hg.orthanc-server.com = 1B:29:E6:DE:95:7B:6B:21:59:2C:0E:C4:85:B9:64:C9:08:84:9B:98 .. highlight:: bash @@ -92,7 +92,8 @@ fingerprint (`click here for more information `__):: - $ openssl s_client -connect hg.orthanc-server.com:443 < /dev/null 2>/dev/null | openssl x509 -fingerprint -sha1 -noout -in /dev/stdin + $ openssl s_client -servername hg.orthanc-server.com -connect hg.orthanc-server.com:443 \ + < /dev/null 2>/dev/null | openssl x509 -fingerprint -sha1 -noout -in /dev/stdin **Important:** As our certificates are changed periodically, you'll have to regularly update your configuration file once Mercurial @@ -116,7 +117,7 @@ and add the following lines:: [hostsecurity] - hg.orthanc-server.com:fingerprints=sha256:F4:E2:A3:2A:77:C7:E3:13:70:2C:41:EA:84:80:6B:C0:D4:84:47:B9:EF:B9:9D:B4:A6:85:43:C4:FA:8D:27:E3 + hg.orthanc-server.com:fingerprints=sha256:6A:D9:B8:88:C2:96:F1:00:B1:5E:CF:80:BB:CC:23:C5:73:18:D1:7C:7A:7B:10:3E:62:1B:08:87:42:F1:1E:BF .. highlight:: bash @@ -124,7 +125,8 @@ SHA256 fingerprint (`click here for more information `__):: - $ openssl s_client -connect hg.orthanc-server.com:443 < /dev/null 2>/dev/null | openssl x509 -fingerprint -sha256 -noout -in /dev/stdin + $ openssl s_client -servername hg.orthanc-server.com -connect hg.orthanc-server.com:443 \ + < /dev/null 2>/dev/null | openssl x509 -fingerprint -sha256 -noout -in /dev/stdin Write access