comparison Resources/Configuration.json @ 3500:0d248cc63ded

Security: If remote HTTP access is enabled, HTTP authentication automatically gets enabled
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 23 Aug 2019 21:32:16 +0200
parents cc3e408165eb
children d2b9981017c4
comparison
equal deleted inserted replaced
3499:d8f7c3970e25 3500:0d248cc63ded
137 137
138 /** 138 /**
139 * Security-related options for the HTTP server 139 * Security-related options for the HTTP server
140 **/ 140 **/
141 141
142 // Whether remote hosts can connect to the HTTP server 142 // Whether remote hosts can connect to the HTTP server. For security
143 // reasons, starting with Orthanc 1.5.8, as soon as this option is
144 // set to "true", authentication is enabled, and you have to declare
145 // an user in "RegisteredUsers" to access the HTTP server.
143 "RemoteAccessAllowed" : false, 146 "RemoteAccessAllowed" : false,
144 147
145 // Whether or not SSL is enabled 148 // Whether or not SSL is enabled
146 "SslEnabled" : false, 149 "SslEnabled" : false,
147 150
148 // Path to the SSL certificate in the PEM format (meaningful only if 151 // Path to the SSL certificate in the PEM format (meaningful only if
149 // SSL is enabled) 152 // SSL is enabled)
150 "SslCertificate" : "certificate.pem", 153 "SslCertificate" : "certificate.pem",
151 154
152 // Whether or not the password protection is enabled 155 // Whether or not the password protection is enabled. Starting with
156 // Orthanc 1.5.8, password protection is automatically enabled as
157 // soon as "RemoteAccessAllowed" is set to "true".
153 "AuthenticationEnabled" : false, 158 "AuthenticationEnabled" : false,
154 159
155 // The list of the registered users. Because Orthanc uses HTTP 160 // The list of the registered users. Because Orthanc uses HTTP
156 // Basic Authentication, the passwords are stored as plain text. 161 // Basic Authentication, the passwords are stored as plain text.
157 "RegisteredUsers" : { 162 "RegisteredUsers" : {