Custom channel connector isuue

Hi Rasa Community,

I’m currently working on a bot using Rasa version 0.14.1 (its an old BOT I made, trying to restart) with Python 3.7. I’m running the bot inside a Docker container with the port mapped as -p 5030:5030.in a server I’m trying to integrate it with a 3rd party custom chat widget via a custom connector.

Here’s the issue:

Here are my endpoint configurations:

endpoints.yml:

action_endpoint:

url: “http://myclienthook.mydomain/webhooks/custom/webhook

Credentials.yml:

custom:

webhook_url: “myclienthook.mydomain/webhooks/custom/webhook”

I’ve verified that the container is running and accessible on 5030, and I’ve tried different configurations for the webhook_url, but I’m still encountering the 404 error on the custom webhook endpoint.

Any guidance on what might be missing or misconfigured to get the custom connector working would be greatly appreciated! Thank you in advance for your help.