Vik
Vik

Reputation: 5961

Elastic Load balancer returning empty reply

I have setup a elb instance that has 80 port open and forwarded to ec2 instance. healthcheck seems to be working fine and I do see request being made from elb to instance in instance's access logs. However, when I try to access load balancer via its DNS name either via curl or via browsers - I get empty response.

curl http://DashApp-LB-417259830.us-west-2.elb.amazonaws.com curl: (52) Empty reply from server

Looked everywhere but not able to identify what is going on in this case.

Upvotes: 2

Views: 7248

Answers (1)

keep_help
keep_help

Reputation: 59

I can view default ubuntu apache2 introduction page while hitting to the URL and through curl. That means your ELB is working fine. But you may need to reconfigure your web server for view the index page or reconfigure your ELB which points to right apache2 pages.

Upvotes: 2

Related Questions