I have a spring-boot
application deployed on AWS
. Earlier we were using a domain and associated the A type
IPv4 to the application load balancer under it's record set.
Every things seems to be working as expected but now recently, we were required to let the domain expire and associate new domain in future but till that time, we want the application to be accessed.
The problem is, am not aware of how to dissociate the domain. I have the load balancer arn
with me, the security group is set to the correct ip. The listener
is set to 443
, but every time I hit the arn
, it doesn't open the app and says the site can't be reached
.
What is the correct way now? Do I need to have an Elastic IP
for the ec2
where my app is running? How can I access this with ALB directly? Do I need to add a listener for port 80
as well?
Please guide.
Note: It's a docker image which is deployed on private ec2 instance.