mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:42:54 +00:00
scheme checking for webservers without $_SERVER['HTTPS']
This commit is contained in:
parent
2785bb413e
commit
511d8a30a0
1 changed files with 6 additions and 1 deletions
7
boot.php
7
boot.php
|
@ -286,7 +286,12 @@ class App {
|
|||
|
||||
startup();
|
||||
|
||||
$this->scheme = ((isset($_SERVER['HTTPS']) && ($_SERVER['HTTPS'])) ? 'https' : 'http' );
|
||||
$this->scheme = 'http';
|
||||
if(x($_SERVER,'HTTPS') && $_SERVER['HTTPS'])
|
||||
$this->scheme = 'https';
|
||||
elseif(x($_SERVER,'SERVER_PORT') && (intval($_SERVER['SERVER_PORT']) == 443))
|
||||
$this->scheme = 'https';
|
||||
|
||||
|
||||
if(x($_SERVER,'SERVER_NAME')) {
|
||||
$this->hostname = $_SERVER['SERVER_NAME'];
|
||||
|
|
Loading…
Reference in a new issue