Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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";
Expand All @@ -65,4 +65,10 @@ http {
}
}
}
----
----


[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.
====
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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
Expand All @@ -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";
Expand All @@ -65,4 +65,10 @@ http {
}
}
}
----
----


[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.
====