From 6ee54aff10b954c8a2939c42d99c765a2e14bf35 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Wed, 22 Mar 2017 19:28:57 +0000 Subject: [PATCH] Set canonical port based on protocol --- config/initializers/canonical_rails.rb | 1 + 1 file changed, 1 insertion(+) 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; -- 2.43.2