Closed Elias-Ebi closed 3 years ago
We're running in docker, but not with ssl as the load balancer is offloading the ssl connection, so can't help much.
Try setting _server.EnabledSslProtocols = SslProtocols.Tls12
before starting the server.
Thanks, I tried that, but unfortunately still the same error.
I resolved when i try setting Server.EnabledSslProtocols = System.Security.Authentication.SslProtocols.Tls12 | System.Security.Authentication.SslProtocols.Tls11;
It turned out that the problem was with the client I was using. After that was fixed, the solution with System.Security.Authentication.SslProtocols.Tls12
worked as well. Many thanks for the help!
Hello, im currently writing a simple WebServer using Fleck and i enabled Secure Websockets like this:
Which works fine when running it directly on my Windows 10 local machine. Then i tried running it inside a Docker container, first without using secure websocket, where it also worked just fine. But as soon as i use the setup specified above inside the docker-container, the connection fails:
Here is also the Dockerfile i used:
Did someone have a similar issue in the past, or knows why this happens, and can help me? Thank you in advance!