comparison Resources/Configuration.json @ 387:ff647eedfbe1

enabling of Find/Move commands
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 22 Apr 2013 15:59:33 +0200
parents 2cef9c2d4148
children 2d269089078f
comparison
equal deleted inserted replaced
385:dfbd3989a3f9 387:ff647eedfbe1
52 "DicomPort" : 4242, 52 "DicomPort" : 4242,
53 53
54 54
55 55
56 /** 56 /**
57 * Security-related options 57 * Security-related options for the HTTP server
58 **/ 58 **/
59 59
60 // Whether remote hosts can connect to the HTTP server 60 // Whether remote hosts can connect to the HTTP server
61 "RemoteAccessAllowed" : false, 61 "RemoteAccessAllowed" : false,
62 62
63 // Whether or not SSL is enabled 63 // Whether or not SSL is enabled
64 "SslEnabled" : false, 64 "SslEnabled" : false,
65 65
66 // Path to the SSL certificate 66 // Path to the SSL certificate (meaningful only if SSL is enabled)
67 "SslCertificate" : "certificate.pem", 67 "SslCertificate" : "certificate.pem",
68 68
69 // Whether or not the password protection is enabled 69 // Whether or not the password protection is enabled
70 "AuthenticationEnabled" : false, 70 "AuthenticationEnabled" : false,
71 71