diff options
author | friendica <info@friendica.com> | 2012-03-14 20:36:23 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-14 20:36:23 -0700 |
commit | f0a62d8908cef31982c1c2b24fc9dbc8b59b8bdb (patch) | |
tree | d39ffaeeec66f6241acd2808f3eb79439729cc20 /boot.php | |
parent | 64e3e3590b8ef04a1fdb1cccabc3970295ef92f2 (diff) | |
download | volse-hubzilla-f0a62d8908cef31982c1c2b24fc9dbc8b59b8bdb.tar.gz volse-hubzilla-f0a62d8908cef31982c1c2b24fc9dbc8b59b8bdb.tar.bz2 volse-hubzilla-f0a62d8908cef31982c1c2b24fc9dbc8b59b8bdb.zip |
ssl_policy stuff
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 19 |
1 files changed, 15 insertions, 4 deletions
@@ -379,11 +379,22 @@ class App { $scheme = $this->scheme; - if(x($this->config,'ssl_policy')) { - if(($ssl) || ($this->config['ssl_policy'] == SSL_POLICY_FULL)) - $scheme = 'https'; - if(($this->config['ssl_policy'] == SSL_POLICY_SELFSIGN) && (local_user() || x($_POST,'auth-params'))) + if((x($this->config,'system')) && (x($this->config['system'],'ssl_policy'))) { + if($this->config['system']['ssl_policy'] == SSL_POLICY_FULL) $scheme = 'https'; + +// We need to populate the $ssl flag across the entire program before turning this on. +// Basically, we'll have $ssl = true on any links which can only be seen by a logged in user +// (and also the login link). Anything seen by an outsider will have it turned off. +// At present, setting SSL_POLICY_SELFSIGN will only force remote contacts to update their +// contact links to this site with "http:" if they are currently using "https:" + +// if($this->config['system']['ssl_policy'] == SSL_POLICY_SELFSIGN) { +// if($ssl) +// $scheme = 'https'; +// else +// $scheme = 'http'; +// } } $this->baseurl = $scheme . "://" . $this->hostname . ((isset($this->path) && strlen($this->path)) ? '/' . $this->path : '' ); |