client configuration with mutual athentication

Hi

I am able to open orthanc app explorer from web browser by client configuration as below (referring https://book.orthanc-server.com/faq/https.html?highlight=mutual)

// Whether or not SSL is enabled
“SslEnabled” : true,

// Path to the SSL certificate (meaningful only if SSL is enabled)
“SslCertificate” : “server.pem”,

“OrthancPeers” : {
“orthanc-b” : {
“Url” : “https://localhost:8042”,
“CertificateFile” : “client-crt.pem”,
“CertificateKeyFile” : “client-key.pem”,
“CertificateKeyPassword”: “”
}

Now trying to work with mutual authentication by adding below configuration

“HttpsCACertificates” : “client-crt.pem”,
“SslVerifyPeers”: true,
“SslTrustedClientCertificates” : “client-crt.pem”,

But not able to open from orthanc app explorer(https://localhost:8042) from web browser.

What i miss here from client configuration for mutual authentication?
Thanks in advance,
Rekha

Hello,

Please follow these instructions in the FAQ:
https://book.orthanc-server.com/faq/https.html#securing-orthanc-with-a-client-certificate-and-access-it-using-a-web-browser

Sébastien-