# HG changeset patch # User Sebastien Jodogne # Date 1566223320 -7200 # Node ID cc3e408165eb4501691d4aa45ae35a925d91ecde # Parent e0e9df6e5c920c658847f00dcb3f29f9a154113c revert diff -r e0e9df6e5c92 -r cc3e408165eb OrthancServer/main.cpp --- a/OrthancServer/main.cpp Mon Aug 19 10:59:10 2019 +0200 +++ b/OrthancServer/main.cpp Mon Aug 19 16:02:00 2019 +0200 @@ -821,7 +821,7 @@ httpServer.SetRemoteAccessAllowed(lock.GetConfiguration().GetBooleanParameter("RemoteAccessAllowed", false)); httpServer.SetKeepAliveEnabled(lock.GetConfiguration().GetBooleanParameter("KeepAlive", defaultKeepAlive)); httpServer.SetHttpCompressionEnabled(lock.GetConfiguration().GetBooleanParameter("HttpCompressionEnabled", true)); - httpServer.SetAuthenticationEnabled(lock.GetConfiguration().GetBooleanParameter("AuthenticationEnabled", true)); + httpServer.SetAuthenticationEnabled(lock.GetConfiguration().GetBooleanParameter("AuthenticationEnabled", false)); httpServer.SetTcpNoDelay(lock.GetConfiguration().GetBooleanParameter("TcpNoDelay", true)); lock.GetConfiguration().SetupRegisteredUsers(httpServer); diff -r e0e9df6e5c92 -r cc3e408165eb Resources/Configuration.json --- a/Resources/Configuration.json Mon Aug 19 10:59:10 2019 +0200 +++ b/Resources/Configuration.json Mon Aug 19 16:02:00 2019 +0200 @@ -150,7 +150,7 @@ "SslCertificate" : "certificate.pem", // Whether or not the password protection is enabled - "AuthenticationEnabled" : true, + "AuthenticationEnabled" : false, // The list of the registered users. Because Orthanc uses HTTP // Basic Authentication, the passwords are stored as plain text.