From 6fc6ec1cda3e710ab8fda4faa1081679e5601e95 Mon Sep 17 00:00:00 2001 From: Dave Page Date: Wed, 29 Jul 2020 09:26:12 +0100 Subject: [PATCH] Correct TLS certificate filename in the container deployment docs. Fixes #5708 --- docs/en_US/container_deployment.rst | 4 ++-- docs/en_US/release_notes_4_25.rst | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/en_US/container_deployment.rst b/docs/en_US/container_deployment.rst index d1ad19e33..57001cf44 100644 --- a/docs/en_US/container_deployment.rst +++ b/docs/en_US/container_deployment.rst @@ -51,7 +51,7 @@ connections. When TLS is enabled, a certificate and key must be provided. Typically these should be stored on the host file system and mounted from the container. The -expected paths are /certs/server.crt and /certs/server.key +expected paths are /certs/server.cert and /certs/server.key **PGADMIN_LISTEN_ADDRESS** @@ -318,7 +318,7 @@ adjusted as appropriate to the specific deployment: listen 443; server_name _; - ssl_certificate /etc/nginx/server.crt; + ssl_certificate /etc/nginx/server.cert; ssl_certificate_key /etc/nginx/server.key; ssl on; diff --git a/docs/en_US/release_notes_4_25.rst b/docs/en_US/release_notes_4_25.rst index 075b84ddd..3c3accfd8 100644 --- a/docs/en_US/release_notes_4_25.rst +++ b/docs/en_US/release_notes_4_25.rst @@ -23,3 +23,4 @@ Bug fixes | `Issue #4810 `_ - Fixed an issue where the user is not able to save the new row if the table is empty. | `Issue #5490 `_ - Make the runtime configuration dialog non-modal. | `Issue #5646 `_ - Ensure that RLS Policy node should be searchable using search object. +| `Issue #5708 `_ - Correct TLS certificate filename in the container deployment docs. \ No newline at end of file