Do you also upgraded to OTP 26? Because OTP 26 has some safer ssl defaults:
In OTP 26, the default value for the verify option is now
verify_peer
instead ofverify_none
. Host verification requires trusted CA certificates to be supplied using one of the optionscacerts
orcacertsfile
.
You could get the old behaviour with the following configuration:
config :abc, abc.Repo,
[...]
ssl_opts: [verify: :verify_none]