diff --git a/templates/outline/docker-compose.yml b/templates/outline/docker-compose.yml index 2830038..15415e4 100644 --- a/templates/outline/docker-compose.yml +++ b/templates/outline/docker-compose.yml @@ -24,6 +24,10 @@ services: - SECRET_KEY=${SECRET_KEY} - UTILS_SECRET=${UTILS_SECRET} - DATABASE_URL=postgres://outline:${DB_PASSWORD}@outline-postgres:5432/outline + # Az Outline 1.x alapértelmezésben SSL-t vár a Postgrestől. A stackben futó + # sidecar Postgres nem beszél SSL-t (belső hálózat), ezért enélkül az app + # indulási hurokba kerül: "The server does not support SSL connections". + - PGSSLMODE=disable - REDIS_URL=redis://outline-redis:6379 - URL=https://${SUBDOMAIN}.${DOMAIN} - PORT=3000