]> git.openstreetmap.org Git - rails.git/blobdiff - config/initializers/canonical_rails.rb
Merge remote-tracking branch 'upstream/pull/2134'
[rails.git] / config / initializers / canonical_rails.rb
index 314826add81d9ff6018922f7fc180d7d3040fc62..0d1461ed7b153758d893a1216a602a3f9ef792e8 100644 (file)
@@ -1,11 +1,12 @@
 CanonicalRails.setup do |config|
   # Force the protocol. If you do not specify, the protocol will be based on the incoming request's protocol.
 
-  # config.protocol#= 'https://'
+  config.protocol = "#{SERVER_PROTOCOL}://"
 
   # This is the main host, not just the TLD, omit slashes and protocol. If you have more than one, pick the one you want to rank in search results.
 
   config.host = SERVER_URL
+  config.port = SERVER_PROTOCOL == "https" ? 443 : 80
 
   # http://en.wikipedia.org/wiki/URL_normalization
   # Trailing slash represents semantics of a directory, ie a collection view - implying an :index get route;