From c3d46a761aec1f6e12e8f2e8f9ccef93535c1b27 Mon Sep 17 00:00:00 2001 From: Karl Kemister-Sheppard Date: Wed, 30 Jul 2025 10:13:07 +1000 Subject: [PATCH] DOC-3252: Fix Port Reference in SSL Documentation for Word/PDF Document Converters. (#3808) * DOC-3252: Fix Port Reference in SSL Documentation for Word/PDF Document Converters. * DOC-3252: Fix typo in anchor tag. --- .../export-to-pdf-ssl-communication.adoc | 12 +++++++++--- ...port-to-word-ssl-communication-on-premises.adoc | 14 ++++++++++---- 2 files changed, 19 insertions(+), 7 deletions(-) diff --git a/modules/ROOT/partials/individually-licensed-components/export-to-pdf/export-to-pdf-ssl-communication.adoc b/modules/ROOT/partials/individually-licensed-components/export-to-pdf/export-to-pdf-ssl-communication.adoc index 193cb88f60..b1eeaa1aab 100644 --- a/modules/ROOT/partials/individually-licensed-components/export-to-pdf/export-to-pdf-ssl-communication.adoc +++ b/modules/ROOT/partials/individually-licensed-components/export-to-pdf/export-to-pdf-ssl-communication.adoc @@ -32,7 +32,7 @@ frontend http-in default_backend servers backend servers - server server1 127.0.0.1:8000 maxconn 32 + server server1 127.0.0.1:8080 maxconn 32 ---- === NGINX example @@ -55,7 +55,7 @@ http { ssl_certificate_key /etc/ssl/your_cert_key.key; location / { - proxy_pass http://127.0.0.1:8000; + proxy_pass http://127.0.0.1:8080; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; @@ -65,4 +65,10 @@ http { } } } ----- \ No newline at end of file +---- + + +[NOTE] +==== +The Docker images do not include built-in SSL configuration. SSL must be handled by a reverse proxy that forwards requests to the container's HTTP service on port 8080. +==== \ No newline at end of file diff --git a/modules/ROOT/partials/individually-licensed-components/import-from-word-and-export-to-word/import-from-word-and-export-to-word-ssl-communication-on-premises.adoc b/modules/ROOT/partials/individually-licensed-components/import-from-word-and-export-to-word/import-from-word-and-export-to-word-ssl-communication-on-premises.adoc index 83c159e7f6..13f959e1e8 100644 --- a/modules/ROOT/partials/individually-licensed-components/import-from-word-and-export-to-word/import-from-word-and-export-to-word-ssl-communication-on-premises.adoc +++ b/modules/ROOT/partials/individually-licensed-components/import-from-word-and-export-to-word/import-from-word-and-export-to-word-ssl-communication-on-premises.adoc @@ -1,4 +1,4 @@ -[[sll-communication]] +[[ssl-communication]] == SSL Communication Its possible to communicate with {pluginname} On-Premises using secure connections. To achieve this, the load balancer like `NGINX` or `HAProxy` needs to be setup with your SSL certificate. @@ -32,7 +32,7 @@ frontend http-in default_backend servers backend servers - server server1 127.0.0.1:8000 maxconn 32 + server server1 127.0.0.1:8080 maxconn 32 ---- === NGINX example @@ -55,7 +55,7 @@ http { ssl_certificate_key /etc/ssl/your_cert_key.key; location / { - proxy_pass http://127.0.0.1:8000; + proxy_pass http://127.0.0.1:8080; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; @@ -65,4 +65,10 @@ http { } } } ----- \ No newline at end of file +---- + + +[NOTE] +==== +The Docker images do not include built-in SSL configuration. SSL must be handled by a reverse proxy that forwards requests to the container's HTTP service on port 8080. +==== \ No newline at end of file