bitter-air-59559
08/14/2023, 5:04 PMdocker-compose.yml
ports:
- "4000:3000"
- "4100:3100"
depends_on:
- mongo
environment:
- MONGODB_URI=<mongodb://root:password@mongo:27017/growthbook?authSource=admin>
- APP_ORIGIN=https://<dobdomin.domain.com>:4000
- API_HOST=https://<dobdomin.domain.com>:4100
- JWT_SECRET=<secret>
- ENCRYPTION_KEY=<key>
And created a simple proxy config on nginx. Nothing fancy, but I keep getting this error:
Error connecting to the GrowthBook API at https://<dobdomin.domain.com>:4100.
Received the following error message:
Load failed
What am I missing?fresh-football-47124