X-Git-Url: https://git.p6c8.net/jirafeau.git/blobdiff_plain/e32a48c6f4c05505465ed7fe3ca70cb703868d42..6f418cf4a58260714dc17c57e2979feef67e7458:/lib/functions.php?ds=sidebyside diff --git a/lib/functions.php b/lib/functions.php index 2546497..c2cad46 100644 --- a/lib/functions.php +++ b/lib/functions.php @@ -98,6 +98,9 @@ function is_ssl() { return true; } elseif ( isset($_SERVER['SERVER_PORT']) && ( '443' == $_SERVER['SERVER_PORT'] ) ) { return true; + } elseif (isset($_SERVER['HTTP_X_FORWARDED_PROTO'])) { + if ($_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') + return true; } return false; }