From 553b373d5eb647f0fc2909d48400b4ceb392ca79 Mon Sep 17 00:00:00 2001 From: Logan Fick Date: Tue, 31 Oct 2017 20:53:56 -0400 Subject: Added privacy policy. --- app/controllers/statics_controller.rb | 3 +++ app/views/statics/privacy.html.erb | 41 +++++++++++++++++++++++++++++++++++ config/routes.rb | 1 + 3 files changed, 45 insertions(+) create mode 100644 app/views/statics/privacy.html.erb diff --git a/app/controllers/statics_controller.rb b/app/controllers/statics_controller.rb index aaaf5b4..0d42fa9 100644 --- a/app/controllers/statics_controller.rb +++ b/app/controllers/statics_controller.rb @@ -39,4 +39,7 @@ class StaticsController < ApplicationController @players.sort_by!(&:role).reverse! end end + + def privacy + end end diff --git a/app/views/statics/privacy.html.erb b/app/views/statics/privacy.html.erb new file mode 100644 index 0000000..3ff179c --- /dev/null +++ b/app/views/statics/privacy.html.erb @@ -0,0 +1,41 @@ +<% title "Privacy Policy" %> +

Privacy Policy

+

Please note that this privacy policy is not legally binding. It is simply a reference intended to inform you about what is done with your information. Also, this privacy policy only applies to the Redstoner website and forums. The Minecraft server will have its own privacy policy at some point.

+

How your information is stored and protected

+

Everything on the website is stored in a database, to which access is strictly limited. Only users of the administrator rank or former administrators who are well known and are trusted by the rest of the current administrators may access the database. Offsite backups of this data are made daily only to the network and servers of at least one current administrator via an encrypted SSH connection.

+

Passwords are stored using the bcrypt algorithm. Plaintext passwords are never logged or stored anywhere.

+

The website code is <%= link_to "open source", "https://github.com/RedstonerServer/redstoner.com" %> and undergoes heavy testing and review before it is deployed to ensure no exploitable bugs or backdoors make it onto the production server.

+

All connections to our website are automatically forced to be made over HTTPS to ensure your data is protected while in transit. We maintain <%= link_to "good TLS paramters", "https://www.ssllabs.com/ssltest/analyze.html?d=redstoner.com" %> and also employ other techniques to ensure secure connections such as <%= link_to "being on the HSTS preload list", "https://hstspreload.org/?domain=redstoner.com" %> and OCSP stapling.

+

Information we collect

+ +

This information is optional and is obtained only if you provide it:

+ +

This information is also collected, however does not affect your Redstoner account directly:

+ +

How your information is used and who it is visible to

+ +

Password reuse check

+

When you first sign up on our website, we use your email address and password to check if you are reusing your password with your Mojang account. This is done by attempting to log into Mojang's server using this information. If it succeeds, then your confirmation email will contain a note warning you not to reuse your password. The information used to perform this check is never used to actually take over your Minecraft account. In fact, we can't because your password is hashed after the check and is totally unusable to us. If you get this warning not to reuse your password, it is still highly recommended that you change your password for your Mojang account and also use a password manager.

+

Who your information is shared with

+

We do not share your information with any third parties. The only time we will release information is if we are legally required to.

+
+

This privacy policy was last revised October 31, 2017.

diff --git a/config/routes.rb b/config/routes.rb index 5b35f95..6ad277b 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -9,6 +9,7 @@ Redstoner::Application.routes.draw do get 'donate' get 'home' get 'online' + get 'privacy' get 'index' end end -- cgit v1.2.3