ssl_dist.conf 459 B

1234567891011
  1. %% The options in the {server, Opts} tuple are used when calling ssl:ssl_accept/3,
  2. %% and the options in the {client, Opts} tuple are used when calling ssl:connect/4.
  3. %%
  4. %% More information at: http://erlang.org/doc/apps/ssl/ssl_distribution.html
  5. [{server,
  6. [{certfile, "{{ platform_etc_dir }}/certs/cert.pem"},
  7. {keyfile, "{{ platform_etc_dir }}/certs/key.pem"},
  8. {secure_renegotiate, true},
  9. {depth, 0}]},
  10. {client,
  11. [{secure_renegotiate, true}]}].