We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are several optional setting that could be passed along to the underlying erlang ssl system:
https://elixirforum.com/t/making-ssl-tests-all-pass-for-phoenix-lets-encrypt/3507/15
https: [ port: System.get_env("APP_HTTPS_PORT") || "${APP_HTTPS_PORT}", keyfile: System.get_env("APP_SSL_KEY_PATH") || "${APP_SSL_KEY_PATH}", certfile: System.get_env("APP_SSL_CERT_PATH") || "${APP_SSL_CERT_PATH}", cacertfile: System.get_env("APP_SSL_INTERMEDIATE_CERT_PATH") || "${APP_SSL_INTERMEDIATE_CERT_PATH}", dhfile: System.get_env("APP_SSL_DHPARAMS_PATH") || "${APP_SSL_DHPARAMS_PATH}", versions: [:'tlsv1.2'], ciphers: ~w( ECDHE-ECDSA-AES128-GCM-SHA256 ECDHE-ECDSA-AES256-GCM-SHA384 ECDHE-ECDSA-AES128-SHA ECDHE-ECDSA-AES256-SHA ECDHE-ECDSA-AES128-SHA256 ECDHE-ECDSA-AES256-SHA384 ECDHE-RSA-AES128-GCM-SHA256 ECDHE-RSA-AES256-GCM-SHA384 ECDHE-RSA-AES128-SHA ECDHE-RSA-AES256-SHA ECDHE-RSA-AES128-SHA256 ECDHE-RSA-AES256-SHA384 DHE-RSA-AES128-GCM-SHA256 DHE-RSA-AES256-GCM-SHA384 DHE-RSA-AES128-SHA DHE-RSA-AES256-SHA DHE-RSA-AES128-SHA256 DHE-RSA-AES256-SHA256 )c, secure_renegotiate: true, client_renegotiation: false, reuse_sessions: true, honor_cipher_order: true, max_connections: :infinity ],
Elli discards the rest of the Optsand only keeps two:
Opts
elli/src/elli.erl
Lines 135 to 137 in d22bc09
I suggest we pass through all additional params set by the user.
This PR attempts to fix: #106
Regards.
The text was updated successfully, but these errors were encountered:
Thanks for the report, and the PR!
Sorry, something went wrong.
No branches or pull requests
There are several optional setting that could be passed along to the underlying erlang ssl system:
https://elixirforum.com/t/making-ssl-tests-all-pass-for-phoenix-lets-encrypt/3507/15
Elli discards the rest of the
Opts
and only keeps two:elli/src/elli.erl
Lines 135 to 137 in d22bc09
I suggest we pass through all additional params set by the user.
This PR attempts to fix: #106
Regards.
The text was updated successfully, but these errors were encountered: