]> cat aescling's git repositories - mastodon.git/commitdiff
enforce LOCAL_HTTPS=true in production (#6061)
authornightpool <eg1290@gmail.com>
Fri, 22 Dec 2017 01:17:59 +0000 (19:17 -0600)
committerEugen Rochko <eugen@zeonfederated.com>
Fri, 22 Dec 2017 01:17:59 +0000 (02:17 +0100)
* enforce https in production

* note changes in production env sample

* typo fix

.env.production.sample
config/initializers/ostatus.rb

index 91fcce6ac4568bf1193ea56db6af9e54cc85d8b9..3f0edd72ff643016be99ff20f3834a8bda188dda 100644 (file)
@@ -11,10 +11,11 @@ DB_PASS=
 DB_PORT=5432
 
 # Federation
-# Note: Changing LOCAL_DOMAIN or LOCAL_HTTPS at a later time will cause unwanted side effects.
+# Note: Changing LOCAL_DOMAIN at a later time will cause unwanted side effects, including breaking all existing federation.
 # LOCAL_DOMAIN should *NOT* contain the protocol part of the domain e.g https://example.com.
 LOCAL_DOMAIN=example.com 
-LOCAL_HTTPS=true
+
+# Changing LOCAL_HTTPS in production is no longer supported. (Mastodon will always serve https:// links)
 
 # Use this only if you need to run mastodon on a different domain than the one used for federation.
 # You can read more about this option on https://github.com/tootsuite/documentation/blob/master/Running-Mastodon/Serving_a_different_domain.md
index bb8591f74756dcac51f2c9ed28dc672c073f049f..5773b72903905800483205112166ed638a4c7446 100644 (file)
@@ -3,11 +3,12 @@
 port     = ENV.fetch('PORT') { 3000 }
 host     = ENV.fetch('LOCAL_DOMAIN') { "localhost:#{port}" }
 web_host = ENV.fetch('WEB_DOMAIN') { host }
-https    = ENV['LOCAL_HTTPS'] == 'true'
 
 alternate_domains = ENV.fetch('ALTERNATE_DOMAINS') { '' }
 
 Rails.application.configure do
+  https    = Rails.env.production? || ENV['LOCAL_HTTPS'] == 'true'
+
   config.x.local_domain = host
   config.x.web_domain   = web_host
   config.x.use_https    = https