diff --git a/docs/concepts/pwa-building-blocks.md b/docs/concepts/pwa-building-blocks.md index 25ad462eae..057c46cec0 100644 --- a/docs/concepts/pwa-building-blocks.md +++ b/docs/concepts/pwa-building-blocks.md @@ -79,7 +79,7 @@ Deployment without using nginx is theoretically possible, even though many usefu ## Hiding the ICM Backend -For security reasons, it may be desirable to hide the backend adress and prevent direct access to it. +For security reasons, it may be desirable to hide the backend address and prevent direct access to it. The Intershop PWA supports this functionality and the [default deployment](https://intershoppwa.azurewebsites.net/home) uses this feature. To enable it, set the `PROXY_ICM` environment variable on the [SSR container](../guides/ssr-startup.md) to a new URL. Instead of directing REST calls straight to the ICM (see step seven in the [Default Production Deployment](#default-production-deployment)), traffic is routed through the SSR container. diff --git a/scripts/init-local-environment.js b/scripts/init-local-environment.js index 75371aa585..88c216b9bb 100644 --- a/scripts/init-local-environment.js +++ b/scripts/init-local-environment.js @@ -42,7 +42,7 @@ export const environment: Environment = { serviceWorker: false, defaultDeviceType: 'desktop', - icmBaseURL: 'https://intershoppwa.azurewebsites.net', + icmBaseURL: 'https://pwa-ish-demo.test.intershop.com', icmChannel: b2b ? 'inSPIRED-inTRONICS_Business-Site' : 'inSPIRED-inTRONICS-Site', theme: b2b ? 'blue' : 'default', diff --git a/src/environments/environment.prod.ts b/src/environments/environment.prod.ts index 3266b2f6ac..db496b62a3 100644 --- a/src/environments/environment.prod.ts +++ b/src/environments/environment.prod.ts @@ -6,5 +6,5 @@ export const environment: Environment = { serviceWorker: false, /* INTERSHOP COMMERCE MANAGEMENT REST API CONFIGURATION */ - icmBaseURL: 'https://intershoppwa.azurewebsites.net', + icmBaseURL: 'https://pwa-ish-demo.test.intershop.com', }; diff --git a/src/environments/environment.ts b/src/environments/environment.ts index 2ddb928210..d9609b03c9 100644 --- a/src/environments/environment.ts +++ b/src/environments/environment.ts @@ -9,5 +9,5 @@ export const environment: Environment = { ...ENVIRONMENT_DEFAULTS, /* INTERSHOP COMMERCE MANAGEMENT REST API CONFIGURATION */ - icmBaseURL: 'https://intershoppwa.azurewebsites.net', + icmBaseURL: 'https://pwa-ish-demo.test.intershop.com', };