Merge pull request #2686 from rabbitmq/bypass-pem-cache
Expose `bypass_pem_cache` through rabbitmq.conf
This commit is contained in:
commit
26a30234ac
|
|
@ -131,6 +131,8 @@
|
||||||
# ssl_options.ciphers.35 = ECDH-ECDSA-AES128-SHA
|
# ssl_options.ciphers.35 = ECDH-ECDSA-AES128-SHA
|
||||||
# ssl_options.ciphers.36 = ECDH-RSA-AES128-SHA
|
# ssl_options.ciphers.36 = ECDH-RSA-AES128-SHA
|
||||||
|
|
||||||
|
# ssl_options.bypass_pem_cache = true
|
||||||
|
|
||||||
## Select an authentication/authorisation backend to use.
|
## Select an authentication/authorisation backend to use.
|
||||||
##
|
##
|
||||||
## Alternative backends are provided by plugins, such as rabbitmq-auth-backend-ldap.
|
## Alternative backends are provided by plugins, such as rabbitmq-auth-backend-ldap.
|
||||||
|
|
|
||||||
|
|
@ -294,6 +294,9 @@ fun(Conf) ->
|
||||||
lists:reverse([V || {_, V} <- Settings])
|
lists:reverse([V || {_, V} <- Settings])
|
||||||
end}.
|
end}.
|
||||||
|
|
||||||
|
{mapping, "ssl_options.bypass_pem_cache", "ssl.bypass_pem_cache",
|
||||||
|
[{datatype, {enum, [true, false]}}]}.
|
||||||
|
|
||||||
%% ===========================================================================
|
%% ===========================================================================
|
||||||
|
|
||||||
%% Choose the available SASL mechanism(s) to expose.
|
%% Choose the available SASL mechanism(s) to expose.
|
||||||
|
|
|
||||||
|
|
@ -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,
|
||||||
"tcp_listen_options.linger.on = true
|
"tcp_listen_options.linger.on = true
|
||||||
tcp_listen_options.linger.timeout = 100",
|
tcp_listen_options.linger.timeout = 100",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue