I’d like to use the simplest setup possible while still having distinct users for Grist. I am using Caddy as a reverse proxy. When starting grist (omnibus) I get:
grist-1 | info [grist-omnibus] Checking dex... at https://my.tld/dex/.well-known/openid-configuration
grist-1 | debug [grist-omnibus] got: 502
This is my compose file:
services:
grist:
image: gristlabs/grist-omnibus
environment:
URL: https://my.tld
HTTPS: external
TRUSTED_PROXY_IPS: xxx
TEAM: nicolinux
EMAIL: me@email.tld
PASSWORD: xxx
volumes:
# Where to store persistent data, such as documents.
- ${PERSIST_DIR:-./persist}/grist:/persist
ports:
- 8484:8484
For TRUSTED_PROXY_IPS I have added the ip where Caddy is running (LXC on a proxmox host).
Thanks!