A retail company's inventory platform is hosted on Amazon EC2 instances within a private subnet. The instances are registered to a target group associated with an Application Load Balancer (ALB). A SysOps administrator logs into the AWS Management Console and observes that all registered EC2 targets show an 'Unhealthy' status with the error description 'Health check failed'. The administrator checks the configuration and confirms that both the Security Groups and Network ACLs allow inbound HTTP traffic on the application port from the ALB. The ALB health check is configured to query the HTTP path '/health' on the traffic port. Which two configuration issues on the EC2 instances or the web server could be causing the health checks to fail? (Select two.)
- The web server software on the EC2 instances is configured to listen only on the loopback address (127.0.0.1) instead of the primary network interface.Answer
- The application web server requires a specific domain name in the HTTP Host header and returns a 404 Not Found response when queried by the ALB using the instance's private IP address.Answer
- CThe target group is configured to send health check requests to a custom port that does not match the port on which the web server is listening.
- DThe Route 53 active-passive failover routing policy is configured to route traffic to a secondary region, which disables target group health checks in the primary region.