From 347217aedd209ba938306fe435ceadfea65a76ef Mon Sep 17 00:00:00 2001 From: Karl Kemister-Sheppard Date: Tue, 29 Jul 2025 15:56:08 +1000 Subject: [PATCH 1/2] DOC-3252: Fix Port Reference in SSL Documentation for Word/PDF Document Converters. --- .../export-to-pdf-ssl-communication.adoc | 12 +++++++++--- ...export-to-word-ssl-communication-on-premises.adoc | 12 +++++++++--- 2 files changed, 18 insertions(+), 6 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..e2376b8ab4 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 @@ -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 From 05ec03191ecc4a410a6da224b549f9dc9eed83af Mon Sep 17 00:00:00 2001 From: Karl Kemister-Sheppard Date: Tue, 29 Jul 2025 16:03:55 +1000 Subject: [PATCH 2/2] DOC-3252: Fix typo in anchor tag. --- ...m-word-and-export-to-word-ssl-communication-on-premises.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 e2376b8ab4..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.