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 8b697b8 commit 64d7d5dCopy full SHA for 64d7d5d
src/BenchmarksApps/TLS/HttpSys/Program.cs
@@ -37,6 +37,11 @@
37
{
38
// meaning client can send a certificate, but it can be explicitly requested by server as well (renegotiation)
39
options.ClientCertificateMethod = ClientCertificateMethod.AllowRenegotation;
40
+
41
+ foreach (var listeningEndpoint in listeningEndpoints.Split(";"))
42
+ {
43
+ options.UrlPrefixes.Add(listeningEndpoints);
44
+ }
45
});
46
#pragma warning restore CA1416 // Can be launched only on Windows (HttpSys)
47
0 commit comments