mirror of
https://github.com/Mic92/sops-nix.git
synced 2025-03-05 16:17:47 +00:00
Merge pull request #35 from Mic92/fix-tests
This commit is contained in:
commit
9a14b6ab14
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…
Add table
Reference in a new issue