From: Tom Hughes Date: Wed, 22 Mar 2017 19:28:57 +0000 (+0000) Subject: Set canonical port based on protocol X-Git-Tag: live~3454 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/6ee54aff10b954c8a2939c42d99c765a2e14bf35?hp=23f2ac99df997c0e118c6e1902b9014645bf7d55 Set canonical port based on protocol --- diff --git a/config/initializers/canonical_rails.rb b/config/initializers/canonical_rails.rb index c443c8bf8..0d1461ed7 100644 --- a/config/initializers/canonical_rails.rb +++ b/config/initializers/canonical_rails.rb @@ -6,6 +6,7 @@ CanonicalRails.setup do |config| # 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;