Self Hosted Auth
I seem to have hit a bit of an issue in my self hosted attempts. I have setup a docker based self hosted convex app with a nextjs app running. I followed the instructions to setup the convex auth through the manual setup steps and have configured my google provider accordingly. However, when I click on the button that calls the signin function, the call immediately fails because it tries to reach my nextjs /api/auth endpoint instead of the convex http action /api/auth endpoint. Any thoughts?
6 Replies
Thanks for posting in <#1088161997662724167>.
Reminder: If you have a Convex Pro account, use the Convex Dashboard to file support tickets.
- Provide context: What are you trying to achieve, what is the end-user interaction, what are you seeing? (full error message, command output, etc.)
- Use search.convex.dev to search Docs, Stack, and Discord all at once.
- Additionally, you can post your questions in the Convex Community's <#1228095053885476985> channel to receive a response from AI.
- Avoid tagging staff unless specifically instructed.
Thank you!
Where are you importing the
signIn
function fromIts inside of a client component through the useAuthActions hook, I followed the manual setup directly from the docs
Sounds like you're passing your website's url (or localhost) to the Convex client instead of the convex site url
Check
.env.local
when I click on the button that calls the signin function, the call immediately fails because it tries to reach my nextjs /api/auth endpoint instead of the convex http action /api/auth endpointWhen using Next.js, it's expected that your frontend hits the nextjs
/api/auth
endpoints, but these should get proxied to your Convex deployment via middleware (https://labs.convex.dev/auth/setup#middleware, under "Set up the React provider" under the "Next.js" tab), so this sounds like it's doing the right thing so far.
Adding verbose logs to your middleware will probably give more information on what's happening (https://labs.convex.dev/auth/debugging#nextjs-middleware)Debugging - Convex Auth
Authentication library for your Convex backend
Set Up Convex Auth - Convex Auth
Authentication library for your Convex backend
ah, it was 100% the middle ware piece, I had a typo in the file. Its working well now! Thanks!