diff options
| author | Arnaud Cogoluègnes <acogoluegnes@gmail.com> | 2016-10-17 11:03:30 +0200 |
|---|---|---|
| committer | Arnaud Cogoluègnes <acogoluegnes@gmail.com> | 2016-10-17 11:03:30 +0200 |
| commit | 6101e8fa7cc9ad817040306e6e994344f30b0350 (patch) | |
| tree | d0ea28af5e6136bc25e221edc41fb3f7f8198f28 /docs/rabbitmq.config.example | |
| parent | 9ee645a281c3006850e111b898fd9cf6b6214bd1 (diff) | |
| download | rabbitmq-server-git-6101e8fa7cc9ad817040306e6e994344f30b0350.tar.gz | |
Document configuration encryption
References #979
Fixes https://github.com/rabbitmq/rabbitmq-website/issues/282
Diffstat (limited to 'docs/rabbitmq.config.example')
| -rw-r--r-- | docs/rabbitmq.config.example | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/rabbitmq.config.example b/docs/rabbitmq.config.example index 4d376d953a..f425726721 100644 --- a/docs/rabbitmq.config.example +++ b/docs/rabbitmq.config.example @@ -132,6 +132,27 @@ %% %% {password_hashing_module, rabbit_password_hashing_sha256}, + %% Configuration entry encryption. + %% See http://www.rabbitmq.com/configure.html#configuration-encryption + %% + %% To specify the passphrase in the configuration file: + %% + %% {config_entry_decoder, [{passphrase, <<"mypassphrase">>}]} + %% + %% To specify the passphrase in an external file: + %% + %% {config_entry_decoder, [{passphrase, {file, "/path/to/passphrase/file"}}]} + %% + %% To make the broker request the passphrase when it starts: + %% + %% {config_entry_decoder, [{passphrase, prompt}]} + %% + %% To change encryption settings: + %% + %% {config_entry_decoder, [{cipher, aes_cbc256}, + %% {hash, sha512}, + %% {iterations, 1000}]} + %% %% Default User / VHost %% ==================== |
