Hi guys,
I am trying to handle a webhook from fusion auth which is running on a docker container to my application which also runs on a docker container in the same network.
I am trying to set up the webhook to the name of the container (app) in the same network and the corresponding port (8081). In my case HTTP://app:8081/webhooks, but always getting connection refused which means that either port or host is not listening for connections.
Tested curl post to the application's endpoint that handles webhooks - working.
The webhooks endpoint works with basic HTTP auth which is configured in the webhooks section. Again tested with curl and it is working.
Any suggestions on how to connect set up the webhook?
Thanks in advance.