You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Plug.SSL's cipher configuration does not currently allow a TLS 1.3-only configuration on OTP 23.0 or later. This is not about adding TLS 1.3 as part of the cipher_suite: [:strong | : compatible], though that's something we should consider as well.
A working configuration with TLS 1.2 + 1.3 might be:
Unfortunately it seems the :ssl options are rejected because :secure_renegotiate is not applicable to TLS 1.3. Overriding this flag and setting it to false does not help. The same error is triggered by some other options that are set by Plug by default. See also this thread.
I hope I'll have some time to work on a PR soonish, but in the meantime I thought I'd document the issue in case others run into it.
The text was updated successfully, but these errors were encountered:
Plug.SSL
's cipher configuration does not currently allow a TLS 1.3-only configuration on OTP 23.0 or later. This is not about adding TLS 1.3 as part of thecipher_suite: [:strong | : compatible]
, though that's something we should consider as well.A working configuration with TLS 1.2 + 1.3 might be:
When removing TLS 1.2...
...the server fails to start with the following error:
Unfortunately it seems the
:ssl
options are rejected because:secure_renegotiate
is not applicable to TLS 1.3. Overriding this flag and setting it tofalse
does not help. The same error is triggered by some other options that are set by Plug by default. See also this thread.I hope I'll have some time to work on a PR soonish, but in the meantime I thought I'd document the issue in case others run into it.
The text was updated successfully, but these errors were encountered: