kondik
kondik
CCConvex Community
Created by kondik on 2/28/2025 in #self-hosted
now i am trying to make convex auth work
For now, I'll use a cloud solution, but I hope to migrate to self-hosting in the future.
11 replies
CCConvex Community
Created by kondik on 2/28/2025 in #self-hosted
now i am trying to make convex auth work
services:
backend:
image: 'ghcr.io/get-convex/convex-backend:4499dd4fd7f2148687a7774599c613d052950f46'
volumes:
- 'data:/convex/data'
environment:
- SERVICE_FQDN_BACKEND_3210
- 'INSTANCE_NAME=${INSTANCE_NAME:-self-hosted-convex}'
- 'INSTANCE_SECRET=${SERVICE_HEX_32_SECRET}'
- 'CONVEX_RELEASE_VERSION_DEV=${CONVEX_RELEASE_VERSION_DEV:-}'
- 'ACTIONS_USER_TIMEOUT_SECS=${ACTIONS_USER_TIMEOUT_SECS:-}'
- 'CONVEX_CLOUD_ORIGIN=${SERVICE_FQDN_CONVEX_6791}'
- 'CONVEX_SITE_ORIGIN=${SERVICE_FQDN_CONVEX_6791}/http'
- 'DATABASE_URL=${DATABASE_URL:-}'
- 'DISABLE_BEACON=${DISABLE_BEACON:-}'
- 'REDACT_LOGS_TO_CLIENT=${REDACT_LOGS_TO_CLIENT:-}'
- 'CONVEX_SELF_HOSTED_URL=${SERVICE_FQDN_CONVEX_6791}'
healthcheck:
test: 'curl -f http://127.0.0.1:3210/version'
interval: 5s
start_period: 5s
dashboard:
image: 'ghcr.io/get-convex/convex-dashboard:4499dd4fd7f2148687a7774599c613d052950f46'
environment:
- SERVICE_FQDN_CONVEX_6791
- NEXT_PUBLIC_DEPLOYMENT_URL=$SERVICE_FQDN_BACKEND_3210
depends_on:
backend:
condition: service_healthy
healthcheck:
test: 'wget -qO- http://127.0.0.1:6791/'
interval: 5s
start_period: 5s
services:
backend:
image: 'ghcr.io/get-convex/convex-backend:4499dd4fd7f2148687a7774599c613d052950f46'
volumes:
- 'data:/convex/data'
environment:
- SERVICE_FQDN_BACKEND_3210
- 'INSTANCE_NAME=${INSTANCE_NAME:-self-hosted-convex}'
- 'INSTANCE_SECRET=${SERVICE_HEX_32_SECRET}'
- 'CONVEX_RELEASE_VERSION_DEV=${CONVEX_RELEASE_VERSION_DEV:-}'
- 'ACTIONS_USER_TIMEOUT_SECS=${ACTIONS_USER_TIMEOUT_SECS:-}'
- 'CONVEX_CLOUD_ORIGIN=${SERVICE_FQDN_CONVEX_6791}'
- 'CONVEX_SITE_ORIGIN=${SERVICE_FQDN_CONVEX_6791}/http'
- 'DATABASE_URL=${DATABASE_URL:-}'
- 'DISABLE_BEACON=${DISABLE_BEACON:-}'
- 'REDACT_LOGS_TO_CLIENT=${REDACT_LOGS_TO_CLIENT:-}'
- 'CONVEX_SELF_HOSTED_URL=${SERVICE_FQDN_CONVEX_6791}'
healthcheck:
test: 'curl -f http://127.0.0.1:3210/version'
interval: 5s
start_period: 5s
dashboard:
image: 'ghcr.io/get-convex/convex-dashboard:4499dd4fd7f2148687a7774599c613d052950f46'
environment:
- SERVICE_FQDN_CONVEX_6791
- NEXT_PUBLIC_DEPLOYMENT_URL=$SERVICE_FQDN_BACKEND_3210
depends_on:
backend:
condition: service_healthy
healthcheck:
test: 'wget -qO- http://127.0.0.1:6791/'
interval: 5s
start_period: 5s
11 replies
CCConvex Community
Created by kondik on 2/28/2025 in #self-hosted
now i am trying to make convex auth work
convex cloud origin and site origin are set in docker compose, provided in coolify
11 replies
CCConvex Community
Created by kondik on 2/28/2025 in #self-hosted
now i am trying to make convex auth work
the only difference i used password login, not oauth, but both were not working on selfhost
11 replies
CCConvex Community
Created by kondik on 2/28/2025 in #self-hosted
now i am trying to make convex auth work
yeah its working on cloud, i just changed .env.local to cloud urls, and used npx convex dev auth
11 replies
CCConvex Community
Created by kondik on 2/28/2025 in #self-hosted
now i am trying to make convex auth work
and yes, i followed manual instructions for auth
11 replies
CCConvex Community
Created by kondik on 2/28/2025 in #self-hosted
now i am trying to make convex auth work
originally SERVICE_FQDN_CONVEX_6791 was equal to dashboard url, and i had to change it to be able to go through oauth
11 replies
CCConvex Community
Created by kondik on 2/28/2025 in #self-hosted
now i am trying to make convex auth work
'CONVEX_CLOUD_ORIGIN=${SERVICE_FQDN_CONVEX_6791}'
'CONVEX_SITE_ORIGIN=${SERVICE_FQDN_CONVEX_6791}/http
'CONVEX_CLOUD_ORIGIN=${SERVICE_FQDN_CONVEX_6791}'
'CONVEX_SITE_ORIGIN=${SERVICE_FQDN_CONVEX_6791}/http
in coolify, where SERVICE_FQDN_CONVEX_6791 equals <backend-url> , the same as CONVEX_SELF_HOSTED_URL in client env
11 replies