diff --git a/index.php b/index.php index 414c9b5..4d323a0 100755 --- a/index.php +++ b/index.php @@ -19,7 +19,7 @@ class CONFIG public static function SITE_URL() : string { - $proto = $_SERVER['HTTPS'] ?? true ? 'http' : 'https'; + $proto = ($_SERVER['HTTPS'] ?? 'off') == 'on' ? 'https' : 'http'; return "$proto://{$_SERVER['HTTP_HOST']}/"; } };