comparison Resources/Configuration.json @ 2019:9c9332e486ca

HTTPS client certificates can be associated with Orthanc peers to enhance security over Internet
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 14 Jun 2016 17:53:23 +0200
parents 7bd4cb780feb
children fefbe71c2272
comparison
equal deleted inserted replaced
2018:300599489cab 2019:9c9332e486ca
116 "RemoteAccessAllowed" : false, 116 "RemoteAccessAllowed" : false,
117 117
118 // Whether or not SSL is enabled 118 // Whether or not SSL is enabled
119 "SslEnabled" : false, 119 "SslEnabled" : false,
120 120
121 // Path to the SSL certificate (meaningful only if SSL is enabled) 121 // Path to the SSL certificate in the PEM format (meaningful only if
122 // SSL is enabled)
122 "SslCertificate" : "certificate.pem", 123 "SslCertificate" : "certificate.pem",
123 124
124 // Whether or not the password protection is enabled 125 // Whether or not the password protection is enabled
125 "AuthenticationEnabled" : false, 126 "AuthenticationEnabled" : false,
126 127
164 * followed by the username/password pair (if the password 165 * followed by the username/password pair (if the password
165 * protection is enabled on the peer). 166 * protection is enabled on the peer).
166 **/ 167 **/
167 // "peer" : [ "http://localhost:8043/", "alice", "alicePassword" ] 168 // "peer" : [ "http://localhost:8043/", "alice", "alicePassword" ]
168 // "peer2" : [ "http://localhost:8044/" ] 169 // "peer2" : [ "http://localhost:8044/" ]
170
171 /**
172 * This is another, more advanced format to define Orthanc
173 * peers. It notably allows to specify a HTTPS client certificate
174 * in the PEM format, as in the "--cert" option of curl.
175 **/
176 // "peer" : {
177 // "Url" : "http://localhost:8043/",
178 // "Username" : "alice",
179 // "Password" : "alicePassword",
180 // "CertificateFile" : "client.crt",
181 // "CertificateKeyFile" : "client.key",
182 // "CertificateKeyPassword" : "certpass"
183 // }
169 }, 184 },
170 185
171 // Parameters of the HTTP proxy to be used by Orthanc. If set to the 186 // Parameters of the HTTP proxy to be used by Orthanc. If set to the
172 // empty string, no HTTP proxy is used. For instance: 187 // empty string, no HTTP proxy is used. For instance:
173 // "HttpProxy" : "192.168.0.1:3128" 188 // "HttpProxy" : "192.168.0.1:3128"