yes that works
//Begin Really Simple SSL Load balancing fix
I configured it this way, near the top of wp-config as the last snippet before
/**
* The base configurations of the WordPress.
/** code from really simple ssl */
//Begin Really Simple SSL Load balancing fix
if (isset($_SERVER["HTTP_X_FORWARDED_PROTO"] ) && "https" == $_SERVER["HTTP_X_FORWARDED_PROTO"] ) {
$_SERVER["HTTPS"] = "on";
}