You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Copy file name to clipboardExpand all lines: content/en/docs/deployment/docker-deploy/docker-pad.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -238,8 +238,11 @@ These endpoints are especially useful when integrating with orchestration platfo
238
238
239
239
## Reverse Proxy
240
240
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 %}}
243
246
244
247
### Nginx Configuration
245
248
@@ -285,7 +288,7 @@ http {
285
288
286
289
This setup exposes only port 80 publicly while proxying to your app on internal port 8080.
287
290
288
-
### Traefik configuration
291
+
### Traefik Configuration
289
292
290
293
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.
291
294
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.
0 commit comments