I'm trying to configure path based routing within my Application Load Balancer. I have three target groups configured against a single ECS Instance, however when I call one of the specific paths on the ALB, I just get a 404.
I can call the three containers directly (i.e. http://somehost:xxxx) and I can swap the target of the last rule to any of my targets so I think I have something messed up with the paths but I can't figure it out.
Here are the ALB Listener rules: HTTP : 80
- Path is /curly* ==> Forward to app1-tg
- Path is /larry* ==> Forward to app2-tg
- Path is /moe* ==> Forward to app3-tg
Does anyone have any suggestions?