summaryrefslogtreecommitdiff
path: root/priv
diff options
context:
space:
mode:
authorArnaud Cogoluègnes <acogoluegnes@gmail.com>2018-11-22 09:47:16 +0100
committerArnaud Cogoluègnes <acogoluegnes@gmail.com>2018-11-22 09:47:16 +0100
commit744a307dea1befdadc030b453dfa0eeab74aae29 (patch)
tree896b0a99c2d796aa31c499d3f31b887a5bd54f84 /priv
parent5745100835f4ea95e5ff6cd92d949ddc7dd296a2 (diff)
parentaf68fc873ef7b34eba922cedac0e62b99adf1dd0 (diff)
downloadrabbitmq-server-git-744a307dea1befdadc030b453dfa0eeab74aae29.tar.gz
Merge branch 'master' into rabbitmq-server-1743-exclusive-consumer
Conflicts: src/rabbit_amqqueue.erl src/rabbit_amqqueue_process.erl
Diffstat (limited to 'priv')
-rw-r--r--priv/schema/rabbit.schema17
1 files changed, 12 insertions, 5 deletions
diff --git a/priv/schema/rabbit.schema b/priv/schema/rabbit.schema
index a7eaed2654..9cee795296 100644
--- a/priv/schema/rabbit.schema
+++ b/priv/schema/rabbit.schema
@@ -35,7 +35,7 @@ fun(Conf) ->
end
end}.
-%% SSL listeners are configured in the same fashion as TCP listeners,
+%% TLS listeners are configured in the same fashion as TCP listeners,
%% including the option to control the choice of interface.
%%
%% {ssl_listeners, [5671]},
@@ -129,7 +129,7 @@ fun(Conf) ->
end
end}.
-%% Configuring SSL.
+%% TLS options.
%% See http://www.rabbitmq.com/ssl.html for full documentation.
%%
%% {ssl_options, [{cacertfile, "/path/to/testca/cacert.pem"},
@@ -138,8 +138,6 @@ end}.
%% {verify, verify_peer},
%% {fail_if_no_peer_cert, false}]},
-%% SSL options section ========================================================
-
{mapping, "ssl_allow_poodle_attack", "rabbit.ssl_allow_poodle_attack",
[{datatype, {enum, [true, false]}}]}.
@@ -251,7 +249,16 @@ end}.
{translation, "rabbit.ssl_options.versions",
fun(Conf) ->
Settings = cuttlefish_variable:filter_by_prefix("ssl_options.versions", Conf),
- [ V || {_, V} <- Settings ]
+ [V || {_, V} <- Settings]
+end}.
+
+{mapping, "ssl_options.ciphers.$cipher", "rabbit.ssl_options.ciphers",
+ [{datatype, string}]}.
+
+{translation, "rabbit.ssl_options.ciphers",
+fun(Conf) ->
+ Settings = cuttlefish_variable:filter_by_prefix("ssl_options.ciphers", Conf),
+ [V || {_, V} <- Settings]
end}.
%% ===========================================================================