comparison Resources/Configuration.json @ 2032:65b1ce7cb84f

Replaced "localhost" by "127.0.0.1", as it might impact performance on Windows
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 21 Jun 2016 09:26:56 +0200
parents b4da986c82bb
children e33e0ae51d7b
comparison
equal deleted inserted replaced
2031:a6e8e2251304 2032:65b1ce7cb84f
143 * Uncommenting the following line would enable Orthanc to 143 * Uncommenting the following line would enable Orthanc to
144 * connect to an instance of the "storescp" open-source DICOM 144 * connect to an instance of the "storescp" open-source DICOM
145 * store (shipped in the DCMTK distribution) started by the 145 * store (shipped in the DCMTK distribution) started by the
146 * command line "storescp 2000". 146 * command line "storescp 2000".
147 **/ 147 **/
148 // "sample" : [ "STORESCP", "localhost", 2000 ] 148 // "sample" : [ "STORESCP", "127.0.0.1", 2000 ]
149 149
150 /** 150 /**
151 * A fourth parameter is available to enable patches for a 151 * A fourth parameter is available to enable patches for a
152 * specific PACS manufacturer. The allowed values are currently 152 * specific PACS manufacturer. The allowed values are currently
153 * "Generic" (default value), "StoreScp" (storescp tool from 153 * "Generic" (default value), "StoreScp" (storescp tool from
163 /** 163 /**
164 * Each line gives the base URL of an Orthanc peer, possibly 164 * Each line gives the base URL of an Orthanc peer, possibly
165 * followed by the username/password pair (if the password 165 * followed by the username/password pair (if the password
166 * protection is enabled on the peer). 166 * protection is enabled on the peer).
167 **/ 167 **/
168 // "peer" : [ "http://localhost:8043/", "alice", "alicePassword" ] 168 // "peer" : [ "http://127.0.0.1:8043/", "alice", "alicePassword" ]
169 // "peer2" : [ "http://localhost:8044/" ] 169 // "peer2" : [ "http://127.0.0.1:8044/" ]
170 170
171 /** 171 /**
172 * This is another, more advanced format to define Orthanc 172 * This is another, more advanced format to define Orthanc
173 * peers. It notably allows to specify a HTTPS client certificate 173 * peers. It notably allows to specify a HTTPS client certificate
174 * in the PEM format (as in the "--cert" option of curl), or to 174 * in the PEM format (as in the "--cert" option of curl), or to
175 * enable PKCS#11 authentication for smart cards. 175 * enable PKCS#11 authentication for smart cards.
176 **/ 176 **/
177 // "peer" : { 177 // "peer" : {
178 // "Url" : "http://localhost:8043/", 178 // "Url" : "http://127.0.0.1:8043/",
179 // "Username" : "alice", 179 // "Username" : "alice",
180 // "Password" : "alicePassword", 180 // "Password" : "alicePassword",
181 // "CertificateFile" : "client.crt", 181 // "CertificateFile" : "client.crt",
182 // "CertificateKeyFile" : "client.key", 182 // "CertificateKeyFile" : "client.key",
183 // "CertificateKeyPassword" : "certpass", 183 // "CertificateKeyPassword" : "certpass",