From e4d6e1fcce75ea32859d8e33f1ce27361cc49bcd Mon Sep 17 00:00:00 2001 From: Richard Treier Date: Mon, 13 Nov 2023 16:45:18 +0100 Subject: [PATCH] docs: improved path mapping readability --- docs/deployment-guide/goals/production/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/deployment-guide/goals/production/README.md b/docs/deployment-guide/goals/production/README.md index 10309c26a..ed2d5bc48 100644 --- a/docs/deployment-guide/goals/production/README.md +++ b/docs/deployment-guide/goals/production/README.md @@ -43,9 +43,9 @@ proxy (at least the protocol endpoint needs to be). - The Backend's `11002` port. Henceforth, called the Management API. - The Backend's `11003` port. Henceforth, called the Protocol API. - The mapping should look like this: - - `/api/dsp` -> `edc:11003/api/dsp` - - `/api/management` -> `edc:11002/api/management` - - All other requests should be mapped to `edc-ui:80` + - `https://[MY_EDC_FQDN]/api/dsp` -> `edc:11003/api/dsp` + - `https://[MY_EDC_FQDN]/api/management` -> **Auth Proxy** -> `edc:11002/api/management` + - All other requests -> **Auth Proxy** -> `edc-ui:80` - Regarding TLS/HTTPS: - All endpoints need to be secured by TLS/HTTPS. A productive connector won't work without it. - All endpoint should have HTTP to HTTPS redirects.