Deltalus
Deltalus4w ago

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
Convex Bot
Convex Bot4w ago
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!
erquhart
erquhart4w ago
Where are you importing the signIn function from
Deltalus
DeltalusOP4w ago
Its inside of a client component through the useAuthActions hook, I followed the manual setup directly from the docs
erquhart
erquhart4w ago
Sounds like you're passing your website's url (or localhost) to the Convex client instead of the convex site url Check .env.local
sshader
sshader3w ago
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
When 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
Deltalus
DeltalusOP3w ago
ah, it was 100% the middle ware piece, I had a typo in the file. Its working well now! Thanks!

Did you find this page helpful?