Erlang needs to connect to https server?
问题 I have an erlang application and it needs to connect to a php application hosted on Apache with HTTPS. How do I install the client certificate on my erlang machine? 回答1: The SSL module of Erlang/OTP which is the interface for Secure Socket Layer has an option for defining client side certificate: {cacertfile, path()} Path to a file containing PEM-encoded CA certificates. The CA certificates are used during server authentication and when building the client certificate chain. Now if you want