Shinyballs
Shinyballs5d ago

hi all, im sure it's something pretty

hi all, im sure it's something pretty simple, but has anyone been able to get a valid generateUploadUrl in order to upload? i've followed the docs/demo and the url that comes back is this: http://convex-<subdomains>/api/storage/upload?token=<token> -- however anytime i try to use it i get a 404 not found. even testing with curl it goes to /404. am i missing something? this is the dashboard url. i also have a backend at http://backend-<subdomains>
8 Replies
Shinyballs
ShinyballsOP5d ago
i am not using SSL at the moment just for testing, and post dashboard/backend is accessible publicly these are my variables on the server:
CONVEX_CLOUD_ORIGIN=http://backend-<subdomains>
CONVEX_SITE_ORIGIN=http://convex-<subdomains>/http
CONVEX_CLOUD_ORIGIN=http://backend-<subdomains>
CONVEX_SITE_ORIGIN=http://convex-<subdomains>/http
jamwt
jamwt5d ago
@nipunn question maybe you know the answer to, re: storage upload urls and self-hosted
nipunn
nipunn5d ago
That’s the right url! Make sure you’re doing a POST If it’s still not working, send over more details about exactly what you did
Shinyballs
ShinyballsOP5d ago
hm weird. i just noticed i can't upload via the dashboard using Files feature either. i'll have to dig
Shinyballs
ShinyballsOP5d ago
No description
Shinyballs
ShinyballsOP5d ago
is s3 required if i wanted to use storage? or does file disk work out of the box? https://discord.com/channels/1019350475847499849/1352783904603508887/1352803989900759153 hmmm answered my own question. still 404 is weird. gonna try starting over i started over and still ran into 404 issue. this is the docker-compose im using for Coolify:
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
huh. i didnt realize it was pulling a specific commit... will try with latest... still the same issue on :latest 😦
lee
lee5d ago
The CONVEX_CLOUD_ORIGIN (and CONVEX_SITE_ORIGIN) should use the backend url, not the dashboard url port 6791 is the dashboard, 3210 is the backend
Shinyballs
ShinyballsOP4d ago
oooh! i also noticed they don't even expose 3211. :TY: here i thought i was doing something wrong. i will open an issue w/ Coolify to fix their template i was able to get things working with CONVEX_SITE_ORIGIN:3211 🙂 edit: 3211 is not required. this worked with just 2 containers (backend & dashboard) and 3210

Did you find this page helpful?