Skip to content

Commit

Permalink
Merge pull request #523 from bareos/dev/pstorz/master/encrypt-doc-enh…
Browse files Browse the repository at this point in the history
…ancement

docs: encryption: use same name for example certificate.
  • Loading branch information
franku committed May 15, 2020
2 parents 8bda99f + 60caf4b commit 4b96a35
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docs/manuals/source/TasksAndConcepts/DataEncryption.rst
Expand Up @@ -88,9 +88,9 @@ Generate a File Daemon Key Pair for each FD:

::

openssl genrsa -out fd-example.key 2048
openssl req -new -key fd-example.key -x509 -out fd-example.cert
cat fd-example.key fd-example.cert >fd-example.pem
openssl genrsa -out example-fd.key 2048
openssl req -new -key example-fd.key -x509 -out example-fd.cert
cat example-fd.key example-fd.cert >example-fd.pem



Expand Down
2 changes: 1 addition & 1 deletion docs/manuals/source/include/config/FdClientPki.conf
Expand Up @@ -4,7 +4,7 @@ FileDaemon {
# encryption configuration
PKI Signatures = Yes # Enable Data Signing
PKI Encryption = Yes # Enable Data Encryption
PKI Keypair = "/etc/bareos/client1-fd.pem" # Public and Private Keys
PKI Keypair = "/etc/bareos/example-fd.pem" # Public and Private Keys
PKI Master Key = "/etc/bareos/master.cert" # ONLY the Public Key
PKI Cipher = aes128 # specify desired PKI Cipher here
}

0 comments on commit 4b96a35

Please sign in to comment.