comparison Resources/Configuration.json @ 408:5a3a4a25e568 lua-scripting

reintegration from mainline
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 02 May 2013 16:51:40 +0200
parents 2d269089078f
children 28ba73274919
comparison
equal deleted inserted replaced
397:941ea46e9e26 408:5a3a4a25e568
58 "DicomPort" : 4242, 58 "DicomPort" : 4242,
59 59
60 60
61 61
62 /** 62 /**
63 * Security-related options 63 * Security-related options for the HTTP server
64 **/ 64 **/
65 65
66 // Whether remote hosts can connect to the HTTP server 66 // Whether remote hosts can connect to the HTTP server
67 "RemoteAccessAllowed" : false, 67 "RemoteAccessAllowed" : false,
68 68
69 // Whether or not SSL is enabled 69 // Whether or not SSL is enabled
70 "SslEnabled" : false, 70 "SslEnabled" : false,
71 71
72 // Path to the SSL certificate 72 // Path to the SSL certificate (meaningful only if SSL is enabled)
73 "SslCertificate" : "certificate.pem", 73 "SslCertificate" : "certificate.pem",
74 74
75 // Whether or not the password protection is enabled 75 // Whether or not the password protection is enabled
76 "AuthenticationEnabled" : false, 76 "AuthenticationEnabled" : false,
77 77