Commit b2e7aa31 by Qiang Xue

Enhanced the detection of secure connection.

parent cc7c6c7a
...@@ -533,7 +533,8 @@ class Request extends \yii\base\Request ...@@ -533,7 +533,8 @@ class Request extends \yii\base\Request
*/ */
public function getIsSecureConnection() public function getIsSecureConnection()
{ {
return !empty($_SERVER['HTTPS']) && strcasecmp($_SERVER['HTTPS'], 'off'); return isset($_SERVER['HTTPS']) && strcasecmp($_SERVER['HTTPS'], 'off')
|| isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO']==='https';
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment