Ali Abbas
Ali Abbas

Reputation: 488

Redirection on Elastic Load Balance based routing

I need help in this scenario

Is there any way to fulfill above scenario.

Upvotes: 0

Views: 39

Answers (1)

Ashan
Ashan

Reputation: 19748

You can use AWS CloudFront as a proxy for your use case where you can plugin the two EC2 instances behind CloudFront as Origins and Add behavior rules (Path rules) to switch traffic to one or the other.

Your client will send requests only to the CloudFront URL(Or DNS mapped through Route53) and won't be knowing about the EC2 instances behind. This approach will work, if your EC2 instances are publicly accessible but will be cost effective and reduce the load on your services, if you happen to cache content.

Alternative approach is to use an Application Load Balancer with path based routing configuration.

Following tutorial will guide you through the steps.

Upvotes: 1

Related Questions