X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/24271b75bda2a358a70db5fbbb44ea8a72ed8a13..43c09d8062fc4aef4f1e0e5d3598e526a02bb288:/config/initializers/canonical_rails.rb diff --git a/config/initializers/canonical_rails.rb b/config/initializers/canonical_rails.rb index 314826add..0d1461ed7 100644 --- a/config/initializers/canonical_rails.rb +++ b/config/initializers/canonical_rails.rb @@ -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;