diff options
| author | Karl Nilsson <kjnilsson@gmail.com> | 2016-10-17 13:58:56 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-10-17 13:58:56 +0100 |
| commit | 3906b1bfd21c83ba33ef5de491a993f8d4d9fc03 (patch) | |
| tree | a7c0451145297405a8406d342cb5016516923007 /docs/rabbitmq.config.example | |
| parent | 9ee645a281c3006850e111b898fd9cf6b6214bd1 (diff) | |
| parent | 360bc947ec1c7ed17ed2fb4291f245cea2dfeea5 (diff) | |
| download | rabbitmq-server-git-3906b1bfd21c83ba33ef5de491a993f8d4d9fc03.tar.gz | |
Merge pull request #999 from rabbitmq/rabbitmq-website-282
Document configuration encryption
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 %% ==================== |
