]> git.openstreetmap.org Git - rails.git/blob - config/initializers/canonical_rails.rb
Use canonical-rails gem to generate canonical URLs
[rails.git] / config / initializers / canonical_rails.rb
1 CanonicalRails.setup do |config|
2   # Force the protocol. If you do not specify, the protocol will be based on the incoming request's protocol.
3
4   # config.protocol#= 'https://'
5
6   # 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.
7
8   config.host = SERVER_URL
9
10   # http://en.wikipedia.org/wiki/URL_normalization
11   # Trailing slash represents semantics of a directory, ie a collection view - implying an :index get route;
12   # otherwise we have to assume semantics of an instance of a resource type, a member view - implying a :show get route
13   #
14   # Acts as a whitelist for routes to have trailing slashes
15
16   config.collection_actions = [:index]
17
18   # Parameter spamming can cause index dilution by creating seemingly different URLs with identical or near-identical content.
19   # Unless whitelisted, these parameters will be omitted
20
21   config.whitelisted_parameters = []
22 end