X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/bf8959cdc2e65e18dc3a0eb4d7fe32d38dfd4498..3666b674330ec8d14a224932a191d6121c5974e2:/config/initializers/canonical_rails.rb diff --git a/config/initializers/canonical_rails.rb b/config/initializers/canonical_rails.rb index c443c8bf8..c2c844047 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 = "#{SERVER_PROTOCOL}://" + config.protocol = "#{Settings.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.host = Settings.server_url + config.port = Settings.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;