I want to deploy rasa chatbot and rasa custom action as a separate docker image to ACR

I tried deploying rasa server to acr and in my ingress file I mentioned the route for this as an empty route (“/”) and when I try to hit: “https://api.example.in” it says, “Hello from Rasa”. I also want to deploy the rasa action server in my acr and want to give the route in ingress file as : “/action” and in my endpoints.yml I also mentioned the action_endpoint url as “https://api.example.in/action/webhook” . But none of these works and everything works fine in localhost. I want rasa chatbot to work with my server url as well. If my rasa server is running fine then I’m only left with the rasa action server. I want to implement the action server url like this : “https://api.example.in/action/webhook” for my action server. I’ve attached the screenshot of the ingress file. PFA ingress When I try to hit the url as : “https://api.example.in/action/health” it give 404 error. I’ve attached the screenshot of the error in postman. PFA