In my config: WEBHOOK_URL=https://${SUBDOMAIN}.${DOMAIN_NAME}/randomstring/
I have a workflow listening to the webhook, and it is working when data is received.
However, I realized that the password reset url now includes the randomstring in the url https://app.mydomain.com/**randomstring**/change-password?token=randomtokenstring&mfaEnabled=true
It seems like WEBHOOK_URL affects the entire password reset url.
When I login, I’m able to access it through https://app.mydomain.com
How do I go about fixing this so that the password reset url is https://app.mydomain.com/change-password?token=randomtokenstring&mfaEnabled=true
while keeping prefix randomstring for webhooks
Hi!
As far as i know this parameter should only be affecting webhook urls.
It sounds like your password reset endpoint is an n8n webhook itself or the application that generates the URL is configured to use the n8n WEBHOOK_URL parameter.
Do you know how exactly your reset passwords URLs are generated/configured? Maybe reviewing that setup would help.