This still doesn’t help me to fix my handshake error.
config.exs
http_options: [
timeout: 60_000,
recv_timeout: 60_000,
# ssl: [{:versions, [:"tlsv1.2"]}],
ssl: [
ciphers:
:ssl.cipher_suites(:all, :"tlsv1.2") ++
[%{key_exchange: :rsa, cipher: :aes_256_cbc, mac: :sha256}]
],
log_level: :debug
# hackney: [:insecure]
]
Error Log:
Request: POST /api/bill/payment
** (exit) an exception was raised:
** (HTTPoison.Error) {:tls_alert, 'handshake failure'}
(httpoison) lib/httpoison.ex:66: HTTPoison.request!/5
Not sure what is wrong?
The server still on Erlang OTP 20 and not yet updated to latest version.






















