diff options
author | Alex <alex@adnab.me> | 2023-01-11 16:04:35 +0000 |
---|---|---|
committer | Alex <alex@adnab.me> | 2023-01-11 16:04:35 +0000 |
commit | 94d723f27cea7aa58d11af3e18a165283b40f19a (patch) | |
tree | 529fa2ca6424a83064551d2de0c8688955baa92d /doc/book/reference-manual | |
parent | be6b8f419d71640e64bccfe195a573daeeab2263 (diff) | |
parent | d6ea0cbefa6dcf89ea30e1cd2d36854d8160d6b1 (diff) | |
download | garage-94d723f27cea7aa58d11af3e18a165283b40f19a.tar.gz garage-94d723f27cea7aa58d11af3e18a165283b40f19a.zip |
Merge pull request 'Implement `rpc_secret_file`' (#466) from felix.scheinost/garage:feature/implement-rpc-secret-file into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/466
Diffstat (limited to 'doc/book/reference-manual')
-rw-r--r-- | doc/book/reference-manual/configuration.md | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/book/reference-manual/configuration.md b/doc/book/reference-manual/configuration.md index 2d9c3f0c..353963ef 100644 --- a/doc/book/reference-manual/configuration.md +++ b/doc/book/reference-manual/configuration.md @@ -96,7 +96,7 @@ Performance characteristics of the different DB engines are as follows: - Sled: the default database engine, which tends to produce large data files and also has performance issues, especially when the metadata folder - is on a traditionnal HDD and not on SSD. + is on a traditional HDD and not on SSD. - LMDB: the recommended alternative on 64-bit systems, much more space-efficiant and slightly faster. Note that the data format of LMDB is not portable between architectures, so for instance the Garage database of an x86-64 @@ -267,6 +267,10 @@ This key should be specified here in the form of a 32-byte hex-encoded random string. Such a string can be generated with a command such as `openssl rand -hex 32`. +### `rpc_secret_file` + +Like `rpc_secret` above, just that this is the path to a file that Garage will try to read the secret from. + ### `rpc_bind_addr` The address and port on which to bind for inter-cluster communcations |