We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80b7dc7 commit 0506325Copy full SHA for 0506325
src/Servers/Kestrel/Core/src/KestrelConfigurationLoader.cs
@@ -289,11 +289,11 @@ public void Load()
289
httpsOptions.SslProtocols = endpoint.SslProtocols.Value;
290
}
291
292
+ httpsOptions.ClientCertificateMode = ConfigurationReader.ClientCertificateMode ?? httpsOptions.ClientCertificateMode;
293
+
294
// Specified
295
httpsOptions.ServerCertificate = LoadCertificate(endpoint.Certificate, endpoint.Name)
- ?? httpsOptions.ServerCertificate;
-
296
- httpsOptions.ClientCertificateMode = ConfigurationReader.ClientCertificateMode ?? httpsOptions.ClientCertificateMode;
+ ?? httpsOptions.ServerCertificate;
297
298
if (httpsOptions.ServerCertificate == null && httpsOptions.ServerCertificateSelector == null)
299
{
0 commit comments