WordPress Deployed in Elastic Beanstalk has an error "This site can't be reached"

0

The health of the environment is "Ok" but when I try to open the domain in the browser, it just kept on loading and eventually an error "This site can't be reached" showed up. The ALB allows traffic in port 443 and EC2 allows traffic on port 80. I even tried configuring the Internet and Sharing of my Windows 10 but it didn't help. Please help guys. Thank you! Enter image description here

profile picture
Vin
asked 9 months ago319 views
1 Answer
1
Accepted Answer

Hello.
Have you set up your domain in ALB?
Perhaps you are accessing the Elastic Beanstalk domain.
Accessing the following domain will bring up the WordPress configuration page.
However, an error occurs because the CSS is loaded as http.
Try setting up a redirect from http to https in ALB.
Also, make sure that port 80 is allowed in the ALB security group.

https://pinoyagri.com/wordpress/wp-admin/setup-config.php

Please refer to the following document for ALB redirect settings.
https://repost.aws/knowledge-center/elb-redirect-http-to-https-using-alb

Mixed content may be fixed by setting the following in wp-config.php.

if($_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') {
  $_SERVER['HTTPS'] = 'on';
  $_ENV['HTTPS'] = 'on';
}
profile picture
EXPERT
answered 9 months ago
profile picture
EXPERT
reviewed a month ago
  • Thank you again Riku! I already set up the pinoyagri.com in Route 53. I enabled alias and the "Route traffic to" is the ALB. I can see that http in port 80 is allowed in the ALB because it is present in the inbound rule of the security group. When I finished setting up redirect from http to https, the error "This site can't be reached" is no longer the issue but the 403 Forbidden. As far as I remember you told be back then that it was an issue in configuring my WordPress. I tried understanding the steps on this link: https://github.com/aws-samples/eb-php-wordpress before but it looks like it is no longer updated to today's setup. I'll find other relevant resources and please do let me know for any links or steps that might help related to this issue.

  • Hi Riku! This time around I was able to use the code "if($_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') { $_SERVER['HTTPS'] = 'on'; $_ENV['HTTPS'] = 'on'; }" to address the mixed content. This finally was enabled me to run WordPress successfully. Thank you so much!

  • Since I'm using Elastic Beanstalk, do you think it would be better to deploy again the WordPress and add ".ebextensions" folder and include that PHP code?

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions