Skip to content

Commit 284f17d

Browse files
Refine reverse proxy and Traefik configuration sections
Updated the reverse proxy section for clarity and added an alert box for the example implementation note. Changed 'Traefik configuration' to 'Traefik Configuration' for consistency.
1 parent 2b5326e commit 284f17d

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

content/en/docs/deployment/docker-deploy/docker-pad.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -238,8 +238,11 @@ These endpoints are especially useful when integrating with orchestration platfo
238238

239239
## Reverse Proxy
240240

241-
This section serves as a reference guide and starting point for configuring a reverse proxy on Docker. The configurations provided are intended for illustrative purposes only, as the appropriate settings will vary depending on your specific network environment and infrastructure setup.
242-
Please note that this example implementation is provided "as-is" and is not covered under official support. Support requests related to this specific configuration cannot be addressed.
241+
This section serves as a reference guide and starting point for configuring a reverse proxy on Docker. The configurations provided are intended for illustrative purposes only, as the required settings vary depending on your specific network environment and infrastructure setup.
242+
243+
{{% alert color="info" %}}
244+
This example implementation is provided "as-is" and is not covered under official support. Support requests related to this specific configuration cannot be addressed.
245+
{{% /alert %}}
243246

244247
### Nginx Configuration
245248

@@ -285,7 +288,7 @@ http {
285288
286289
This setup exposes only port 80 publicly while proxying to your app on internal port 8080.
287290
288-
### Traefik configuration
291+
### Traefik Configuration
289292
290293
To set up Traefik as a reverse proxy for your app running in a Docker container, use Docker Compose for simplicity. This configuration exposes Traefik on ports 80/8080, automatically discovers your app container via labels, and routes traffic to it.
291294
Traefik uses two networks: frontend (public) and backend (internal). Add Traefik labels to the app service.
@@ -347,7 +350,6 @@ Dashboard at `http://localhost:8080` shows routes.
347350
348351
Scale easily: duplicate `app service` with unique router rules (e.g., Host(app2.local)).​
349352
350-
351353
## High Availability (sample)
352354
353355
High availability requires redundancy, health checks, and restarts to handle failures. Scale for HA with Docker Compose (for local/dev) or Kubernetes:

0 commit comments

Comments
 (0)