Skip to content

Commit e63255b

Browse files
authored
DOC-3252: Fix Port Reference in SSL Documentation for Word/PDF Document Converters. (#3808) (#3810)
* DOC-3252: Fix Port Reference in SSL Documentation for Word/PDF Document Converters. * DOC-3252: Fix typo in anchor tag.
1 parent cb6810d commit e63255b

File tree

2 files changed

+19
-7
lines changed

2 files changed

+19
-7
lines changed

modules/ROOT/partials/individually-licensed-components/export-to-pdf/export-to-pdf-ssl-communication.adoc

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ frontend http-in
3232
default_backend servers
3333
3434
backend servers
35-
server server1 127.0.0.1:8000 maxconn 32
35+
server server1 127.0.0.1:8080 maxconn 32
3636
----
3737

3838
=== NGINX example
@@ -55,7 +55,7 @@ http {
5555
ssl_certificate_key /etc/ssl/your_cert_key.key;
5656
5757
location / {
58-
proxy_pass http://127.0.0.1:8000;
58+
proxy_pass http://127.0.0.1:8080;
5959
6060
proxy_set_header Upgrade $http_upgrade;
6161
proxy_set_header Connection "Upgrade";
@@ -65,4 +65,10 @@ http {
6565
}
6666
}
6767
}
68-
----
68+
----
69+
70+
71+
[NOTE]
72+
====
73+
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.
74+
====

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

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[[sll-communication]]
1+
[[ssl-communication]]
22
== SSL Communication
33

44
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
3232
default_backend servers
3333
3434
backend servers
35-
server server1 127.0.0.1:8000 maxconn 32
35+
server server1 127.0.0.1:8080 maxconn 32
3636
----
3737

3838
=== NGINX example
@@ -55,7 +55,7 @@ http {
5555
ssl_certificate_key /etc/ssl/your_cert_key.key;
5656
5757
location / {
58-
proxy_pass http://127.0.0.1:8000;
58+
proxy_pass http://127.0.0.1:8080;
5959
6060
proxy_set_header Upgrade $http_upgrade;
6161
proxy_set_header Connection "Upgrade";
@@ -65,4 +65,10 @@ http {
6565
}
6666
}
6767
}
68-
----
68+
----
69+
70+
71+
[NOTE]
72+
====
73+
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.
74+
====

0 commit comments

Comments
 (0)