I've got https working with the majority of my oxwall installation, but one the following subdirectories, it is reverting to insecure, and I cannot figure out why:
/dashboard
/groups/* [any group, works on the main /groups/ page]
/blogs/* [any blog, works on the main /blog/ page]
Various other custom pages are flashing https for a moment and then immediately going to http.
This is a bit aggravating, since I just did this on all the subdomains, and they are working fine [installed in their own DIRs, TLD is directed via DNS entries]. Oxwall is, as usual, the only one not behaving properly from the outset.
I put this into the .htaccess file:
RewriteCond %{HTTP_HOST} ^mytld\.me [NC]RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://my.tld/$1 [R,L]
And I put this into the config.php file:
define('OW_URL_HOME', 'https://my.tld/');
Any ideas would be appreciated. It just makes no sense as to why it's only partially using SSL.