Merge pull request #2686 from rabbitmq/bypass-pem-cache

Expose `bypass_pem_cache` through rabbitmq.conf
This commit is contained in:
Michael Klishin 2020-12-17 23:10:15 +03:00 committed by GitHub
commit 26a30234ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 0 deletions

View File

@ -131,6 +131,8 @@
# ssl_options.ciphers.35 = ECDH-ECDSA-AES128-SHA
# ssl_options.ciphers.36 = ECDH-RSA-AES128-SHA
# ssl_options.bypass_pem_cache = true
## Select an authentication/authorisation backend to use.
##
## Alternative backends are provided by plugins, such as rabbitmq-auth-backend-ldap.

View File

@ -294,6 +294,9 @@ fun(Conf) ->
lists:reverse([V || {_, V} <- Settings])
end}.
{mapping, "ssl_options.bypass_pem_cache", "ssl.bypass_pem_cache",
[{datatype, {enum, [true, false]}}]}.
%% ===========================================================================
%% Choose the available SASL mechanism(s) to expose.

View File

@ -510,6 +510,14 @@ tcp_listen_options.exit_on_close = false",
]}],
[]},
{ssl_options_bypass_pem_cache,
"ssl_options.bypass_pem_cache = true",
[{ssl, [
{bypass_pem_cache, true}
]}],
[]},
{tcp_listen_options_linger_on,
"tcp_listen_options.linger.on = true
tcp_listen_options.linger.timeout = 100",