Alex Untertrifaller

Results 2 comments of Alex Untertrifaller

I tried doing that by using: ``` .ConfigureWebHostDefaults(delegate (IWebHostBuilder webBuilder) { webBuilder.UseKestrel(kestrelOptions => { kestrelOptions.ConfigureHttpsDefaults(httpsOptions => { httpsOptions.SslProtocols = SslProtocols.Tls12; }); }); webBuilder.UseStartup(); }) ``` But has no effect. When...

I have the same problem, did you find a solution?