From 0e68dd164785147116eb91c18f7d3fb6efa9f76f Mon Sep 17 00:00:00 2001 From: Martin Raspaud Date: Wed, 5 Jun 2024 13:22:01 +0200 Subject: [PATCH 1/2] Fix typo in secure backend documentation --- doc/source/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/index.rst b/doc/source/index.rst index 7ff0e12..3074502 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -162,7 +162,7 @@ On the server side (for example a publisher), we need to define the server's sec accepted client keys are provided:: POSTTROLL_SERVER_SECRET_KEY_FILE=/path/to/server.key_secret - POSTTROLL_PUBLIC_SECRET_KEYS_DIRECTORY=/path/to/client_public_keys/ + POSTTROLL_CLIENTS_PUBLIC_KEYS_DIRECTORY=/path/to/client_public_keys/ On the client side (for example a subscriber), we need to define the server's public key file and the client's secret key file:: From 90ebc98dfe5d1ce10a829300f2b122f4b68a3aaf Mon Sep 17 00:00:00 2001 From: Martin Raspaud Date: Wed, 5 Jun 2024 13:23:48 +0200 Subject: [PATCH 2/2] Fix another typo --- doc/source/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/index.rst b/doc/source/index.rst index 3074502..8217f01 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -173,7 +173,7 @@ key file:: These settings can also be set using the posttroll config object, for example:: >>> from posttroll import config - >>> with config.set(backend="secure_zmq", server_pubic_key_file="..."): + >>> with config.set(backend="secure_zmq", server_public_key_file="..."): ... The posttroll configuration uses donfig, for more information, check https://donfig.readthedocs.io/en/latest/.