we have an AWS infrastructure as follows
Client --> Internet Facing LoadBalancer --> Firewall --> Internal LoadBalancer--> ECS Containers
we have an LAMBDA FUNCTION, which stops the servers during night time and starts again at Morning time to reduce billing .
during the instances are in stopped state, if any one access the docker containers, obviously they will face "503 service unavailable"
now the task I need to perform is:
Is there any elagant way to show any personalized text or image like(ex: showing servers are in stopped state please visit again at Morning time) rather than this ugly 503 unavailable.
How can I approch to achieve the above scenario ? what services in AWS can I make use?
Any Ideas or procedures are highly appreciated.
Thanks in Advance, Cheers :)