diff options
| author | Arnaud Cogoluègnes <acogoluegnes@gmail.com> | 2016-10-17 15:20:13 +0200 |
|---|---|---|
| committer | Arnaud Cogoluègnes <acogoluegnes@gmail.com> | 2016-10-17 15:20:13 +0200 |
| commit | c1737b73cdc71c7c6f7de94bf7508e7c79f0cc40 (patch) | |
| tree | 6a34f88f5ac50fa479611ed78dc132108ac5e997 /docs/rabbitmq.config.example | |
| parent | 81a360c460ce7671eac99844871974f7c303ada1 (diff) | |
| parent | 3906b1bfd21c83ba33ef5de491a993f8d4d9fc03 (diff) | |
| download | rabbitmq-server-git-c1737b73cdc71c7c6f7de94bf7508e7c79f0cc40.tar.gz | |
Merge branch 'stable'
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 bea743d679..b31ec4d673 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 %% ==================== |
