now i am trying to make convex auth work
now i am trying to make convex auth work, but i keep having 'could not verify token claim' error, due to the lack of ideas how to make it work, i swapped from selfhost, to cloud solution just to check if its even working and i noticed that auth domain is different in selfhost and cloud (there is also a chance that this is result of me modifying container/coolify env variables)
4 Replies
This is correct, the default port serving backend traffic is 3210 and the default port for HTTP actions is 3211. So if you want to remove the
http
you could use a proxy to point a different url to port 3211
. You followed the manual instructions for setting up convex auth?
what are CONVEX_CLOUD_ORIGIN
and CONVEX_SITE_ORIGIN
set to?
in coolify, where SERVICE_FQDN_CONVEX_6791 equals <backend-url> , the same as CONVEX_SELF_HOSTED_URL in client env
originally SERVICE_FQDN_CONVEX_6791 was equal to dashboard url, and i had to change it to be able to go through oauth
and yes, i followed manual instructions for auth
and it worked when you used the cloud product? also to avoid confusion
CONVEX_CLOUD_ORIGIN
and CONVEX_SITE_ORIGIN
are set in the container running your backend. And then your auth environment variables are set with npx convex env
or in the dashboardand should be the same as in the cloud productyeah its working on cloud, i just changed .env.local to cloud urls, and used npx convex dev auth
the only difference i used password login, not oauth, but both were not working on selfhost
convex cloud origin and site origin are set in docker compose, provided in coolify
For now, I'll use a cloud solution, but I hope to migrate to self-hosting in the future.