From d42656b204a07a9b01ffa212339efda9e2a4d829 Mon Sep 17 00:00:00 2001 From: Thomas Rogers Date: Wed, 27 Nov 2024 16:58:09 +0100 Subject: [PATCH] Update Guide with other variables --- self-hosting/GUIDE.md | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/self-hosting/GUIDE.md b/self-hosting/GUIDE.md index 01aea6620..3c18e3c1e 100644 --- a/self-hosting/GUIDE.md +++ b/self-hosting/GUIDE.md @@ -34,14 +34,17 @@ You can use these by `mv .env.example .env` The following environment variables should be changed to reflect where you are running your application. -| Environment Variable | Description | Local Parameter | -|----------------------------------|------------------------------------------------|-------------------------| -| BASE URL | The URL of the Front End of the Application. | http://localhost:3000 | -| SERVER_BASE_URL | The URL of the API Server. | http://localhost:4000 | -| HIGHLIGHTS_BASE_URL | The URL of the Front end of the Application | http://localhost:3000 | -| NEXT_PUBLIC_BASE_URL | Same as above BASE URL, but for NEXT | http://localhost:3000 | -| NEXT_PUBLIC_SERVER_BASE_URL | Same as above SERVER_BASE_URL, but for NEXT | http://localhost:4000 | -| NEXT_PUBLIC_HIGHLIGHTS_BASE_URL | Same as above HIGHLIGHTS_BASE_URL but for NEXT | http://localhost:3000 | +| Environment Variable | Description | Local Parameter | +|---------------------------------|------------------------------------------------|-----------------------| +| BASE URL | The URL of the Front End of the Application. | http://localhost:3000 | +| SERVER_BASE_URL | The URL of the API Server. | http://localhost:4000 | +| HIGHLIGHTS_BASE_URL | The URL of the Front end of the Application | http://localhost:3000 | +| NEXT_PUBLIC_BASE_URL | Same as above BASE URL, but for NEXT | http://localhost:3000 | +| NEXT_PUBLIC_SERVER_BASE_URL | Same as above SERVER_BASE_URL, but for NEXT | http://localhost:4000 | +| NEXT_PUBLIC_HIGHLIGHTS_BASE_URL | Same as above HIGHLIGHTS_BASE_URL but for NEXT | http://localhost:3000 | +| CLIENT_URL | The URL of the Front end of the Application | http://localhost:3000 | +| IMAGEPROXY_URL | Service that proxies images to avoid blocking | http://localhost:7070 | + Additionally, when doing a docker-compose build, if you are hosting this application you must change the args in the `docker-compose` file.