diff options
author | roconnor <roconnor@theorem.ca> | 2014-11-08T21·39-0500 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-12-10T11·27+0100 |
commit | 2e98703c0ce2ae0924359cd510e2de1c71cb000c (patch) | |
tree | 98e48623aaf72b7b087efb47e7c0a152386e027e | |
parent | 50c33528112d26c0701ce23d435faedb89987b96 (diff) |
Update signing.txt
-rw-r--r-- | doc/signing.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/signing.txt b/doc/signing.txt index 1d042e95e220..7403cac470b2 100644 --- a/doc/signing.txt +++ b/doc/signing.txt @@ -1,6 +1,6 @@ Generate a private key: -$ (umask 277 && openssl genrsa -out /nix/etc/nix/signing-key.sec 2048) +$ (umask 277 && openssl genrsa -out /etc/nix/signing-key.sec 2048) The private key should be kept secret (only readable to the Nix daemon user). @@ -8,7 +8,7 @@ user). Generate the corresponding public key: -$ openssl rsa -in /nix/etc/nix/signing-key.sec -pubout > /nix/etc/nix/signing-key.pub +$ openssl rsa -in /etc/nix/signing-key.sec -pubout > /etc/nix/signing-key.pub The public key should be copied to all machines to which you want to export store paths. |