I am able to get into the software using localhost, but when I go to another PC and use the host name, it keeps asking for a user and password. I have tried both false and true, but it still ask. If i do enter what is below it just ask for the user/pw again and does not work.
Any help would be appreciated.
Thanks.
/**
* Security-related options for the HTTP server
**/
// Whether remote hosts can connect to the HTTP server
"RemoteAccessAllowed" : true,
// Whether or not SSL is enabled
"SslEnabled" : false,
// Path to the SSL certificate in the PEM format (meaningful only if
// SSL is enabled)
"SslCertificate" : "certificate.pem",
// Whether or not the password protection is enabled
"AuthenticationEnabled" : false,
// The list of the registered users. Because Orthanc uses HTTP
// Basic Authentication, the passwords are stored as plain text.
"RegisteredUsers" : {"admin" : "ASWC2017"},