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 4124533 commit 2b8034bCopy full SHA for 2b8034b
src/Servers/Kestrel/Core/src/Middleware/HttpsConnectionMiddleware.cs
@@ -310,7 +310,8 @@ private static bool IsWindowsVersionIncompatible()
310
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
311
{
312
var enableHttp2OnWindows81 = AppContext.TryGetSwitch(EnableWindows81Http2, out var enabled) && enabled;
313
- if (Environment.OSVersion.Version < new Version(6, 3)
+ if (Environment.OSVersion.Version < new Version(6, 3) // Missing ALPN support
314
+ // Win8.1 and 2012 R2 don't support the right cipher configuration by default.
315
|| (Environment.OSVersion.Version < new Version(10, 0) && !enableHttp2OnWindows81))
316
317
return true;
0 commit comments