comparison Resources/Configuration.json @ 34:96e57b863dd9

option to disallow remote access
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 30 Aug 2012 11:22:21 +0200
parents dd1489098265
children e1a3ae0dadf3
comparison
equal deleted inserted replaced
32:0c3e317f35e8 34:96e57b863dd9
31 31
32 /** 32 /**
33 * Security-related options 33 * Security-related options
34 **/ 34 **/
35 35
36 // Whether remote hosts can connect to the HTTP server
37 "RemoteAccessAllowed" : false,
38
36 // Whether or not SSL is enabled 39 // Whether or not SSL is enabled
37 "SslEnabled" : false, 40 "SslEnabled" : false,
38 41
39 // Path to the SSL certificate 42 // Path to the SSL certificate
40 "SslCertificate" : "certificate.pem", 43 "SslCertificate" : "certificate.pem",
41 44
42 // Whether or not the password protection is enabled 45 // Whether or not the password protection is enabled
43 "AuthenticationEnabled" : true, 46 "AuthenticationEnabled" : false,
44 47
45 // The list of the registered users. Because Palantir uses HTTP 48 // The list of the registered users. Because Palantir uses HTTP
46 // Basic Authentication, the passwords are stored as plain text. 49 // Basic Authentication, the passwords are stored as plain text.
47 "RegisteredUsers" : { 50 "RegisteredUsers" : {
48 "alice" : "alicePassword" 51 "alice" : "alicePassword"