mirror of
https://github.com/Mic92/sops-nix.git
synced 2024-12-14 11:57:52 +00:00
README.md: improve documentation on gnupgHome.
This commit is contained in:
parent
7d2b22a18d
commit
70dbc816f2
1 changed files with 16 additions and 0 deletions
16
README.md
16
README.md
|
@ -649,6 +649,22 @@ fingerprint: E4CA86768F176AEB6C01554153AF8D7F149613B1
|
|||
```
|
||||
|
||||
In this case you need to make upload the gpg key directory `/tmp/newkey` to your server.
|
||||
If you uploaded it to `/var/lib/sops` than your sops configuration will look like this:
|
||||
|
||||
```nix
|
||||
{
|
||||
# Make sure that `/var/lib/sops` is owned by root and is not world-readable/writable
|
||||
sops.gnupgHome = "/var/lib/sops";
|
||||
# disable import host ssh keys
|
||||
sops.sshKeyPaths = [];
|
||||
}
|
||||
```
|
||||
|
||||
However be aware that this will also run gnupg on your server including the
|
||||
gnupg daemon. Gnupg is in general not great software and might break in
|
||||
hilarious ways. If you experience problems, you are on your own. If you want a
|
||||
more stable and predictable solution go with ssh keys or one of the KMS services.
|
||||
|
||||
|
||||
## Share secrets between different users
|
||||
|
||||
|
|
Loading…
Reference in a new issue