Wildan M

Results 33 comments of Wildan M

Why not just copy the generated code?

I don't think it will be ever supported since HTTPS verification can be technically difficult. What's your usecase here?

Just want to make sure, we can set `_.*.gs.short.de` TXT record and set `*.gs.short.de` CNAME record already? I never thought we can set wildcard in middle of dot labels. I...

OK I understand. Although I'd already say there's a tough challenge. We have to turn this software to also be a DNS resolver so DNS validation for wildcard works (so...

Just for clarification, it's technically possible to stick with current HTTP validation to Let's Encrypt but I would reject the idea. If you set a wildcard record then we must...

Hi, From your error message, it quite seems like the request is modified by some proxies in AWS? I don't know because I use other cloud platforms and it just...

After some reading, I think this is because the server is spawned in parallel. A common strategy to load balancing in a cloud environment, which is currently not supported. I...

I use this to get user ID ``` export default defineConfig({ providers: [ Credentials({ ... }), ], callbacks: { session({ session, token }) { if (session.user && token?.sub) { session.user.id...

I think it is. https://github.com/nextauthjs/next-auth/blob/main/packages/core/src/providers/discord.ts#L164-L168 After reading this repo code, I came to know that 'id' is forwarded as 'token.sub'

Ok right, this is a documentation issue, it should be updated.