Really Simple SSL not loading
-
I am running into issues with our site with AWS. We running WordPress on ECS Fargate and have an application load balancer in front of it. We have a certificate created on AWS for https://www.saondemand.com however it is not securing the site.
In wordpress settings we have set the
wordpress address direct to the load balancer
Site Address to : https://www.saondemand.comI have also installed the following script on wp-config.php
//Begin Really Simple SSL Load balancing fix
$server_opts = array(“HTTP_CLOUDFRONT_FORWARDED_PROTO” => “https”, “HTTP_CF_VISITOR”=>”https”, “HTTP_X_FORWARDED_PROTO”=>”https”, “HTTP_X_FORWARDED_SSL”=>”on”, “HTTP_X_FORWARDED_SSL”=>”1”);
foreach( $server_opts as $option => $value ) {
if ((isset($_ENV[“HTTPS”]) && ( “on” == $_ENV[“HTTPS”] )) || (isset( $_SERVER[ $option ] ) && ( strpos( $_SERVER[ $option ], $value ) !== false )) ) {
$_SERVER[ “HTTPS” ] = “on”;
}
}
//END Really Simple SSL
I figured this is the final step to secure our site.
But after installing Real Simply SSL, It doesn’t load. The screen is blank. I have tried to deactivate, and re-install and still. It not working.
Anyone run into this issue before?The page I need help with: [log in to see the link]
- The topic ‘Really Simple SSL not loading’ is closed to new replies.