Page 1 of 1

Forum, now with TLS

Posted: 05 Dec 2015 17:32
by Dust
Now we can finally discuss in an encrypted fashion, thanks to the new https://letsencrypt.org/ initiative. Just go to https://thecorewithin.net instead of the old http page :)

I'm dreaming of a future where every communication is encrypted... :P

Re: Forum, now with TLS

Posted: 08 Dec 2015 12:37
by Idorian
Lol I keep checking this forum on a daily base, not sure why as there is hardly any new info on it :) At least now it will be encrypted :p

Re: Forum, now with TLS

Posted: 14 Dec 2015 21:02
by Tiel
Nice, our useless chatter can now no longer be detected by the NSA.

Re: Forum, now with TLS

Posted: 17 Jan 2016 02:09
by Xureon
However,

Code: Select all

if($_SERVER['SERVER_PORT']!=443) {
  header('Location: https://thecorewithin.net');
  exit;
}
and all that, because why not!

Re: Forum, now with TLS

Posted: 24 Jan 2016 12:40
by Tiel
Xureon wrote:However,

Code: Select all

if($_SERVER['SERVER_PORT']!=443) {
  header('Location: https://thecorewithin.net');
  exit;
}
and all that, because why not!

Code: Select all

header('Location: https://thecorewithin.net' . $_SERVER['REQUEST_URI']);
;)