This message was deleted.
# announcements
w
This message was deleted.
f
It should be showing you the values of APP_ORIGIN and API_HOST. If you want to run on a custom port (like 443) you must adjust the ports in the environment variables. If you need to change the ports on your local dev environment (e.g. if
3000
is already being used), you need to update the above variables AND change the port mapping in `docker-compose.yml`: growthbook: ports: - “4000:3000” # example: use 4000 instead of 3000 for the app - “4100:3100" # example: use 4100 instead of 3100 for the api ... environment: - APP_ORIGIN=http://<my ip or url>:4000 - API_HOST=http://<my ip or url>:4100
b
I have updated the config as per these instructions only. GB app and api are running on default ports, https is handled by the gateway layer and it forwards requests to ports 3000 and 3100 on the GB instance. I'm now able to create login and access GB interface, however my previous features and experiment config are not available. I'm recreating them from scratch.
198 Views