1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 07:05:56 +00:00

$_SERVER['HTTPS'] can be exists and 'off' for non-https connectios

This commit is contained in:
Natan Frei
2017-07-17 00:44:48 +03:00
parent 9fa3ae09a6
commit e234ac8dcb
3 changed files with 3 additions and 3 deletions

View File

@@ -12,7 +12,7 @@
$session_expire = min(2147483647 - time() - 1, max(SESSION_COOKIE_LIFETIME, 86400));
$session_name = (!defined('TTRSS_SESSION_NAME')) ? "ttrss_sid" : TTRSS_SESSION_NAME;
if (@$_SERVER['HTTPS'] == "on") {
if ((!empty($_SERVER['HTTPS']) && ($_SERVER['HTTPS'] != 'off')) || @$_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') {
$session_name .= "_ssl";
ini_set("session.cookie_secure", true);
}