Hi,
Thanks for your help, i have manage to solve my infinite loop redirection by adding these lines to my wp-config.php
/* SSL Settings */
define('FORCE_SSL_ADMIN', true);
/* Turn HTTPS 'on' if HTTP_X_FORWARDED_PROTO matches 'https' */
if (strpos($SERVER['HTTPX_FORWARDED_PROTO'], 'https') !== false) {
$_SERVER['HTTPS'] = 'on';
}