Sha256: 32801890511bcb9de4aeb34d45f41358e1e445179ef1b14b0779aec07356d67e

Contents?: true

Size: 1.22 KB

Versions: 1

Compression:

Stored size: 1.22 KB

Contents

# Do yourself a favor and set these up right when you install the engine.

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://'

  # 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# = 'www.mywebstore.com'
  config.port# = '3000'

  # http://en.wikipedia.org/wiki/URL_normalization
  # Trailing slash represents semantics of a directory, ie a collection view - implying an :index get route;
  # otherwise we have to assume semantics of an instance of a resource type, a member view - implying a :show get route
  #
  # Acts as a whitelist for routes to have trailing slashes

  config.collection_actions# = [:index]

  # Parameter spamming can cause index dilution by creating seemingly different URLs with identical or near-identical content.
  # Unless whitelisted, these parameters will be omitted

  config.whitelisted_parameters# = []

  # Output a matching OpenGraph URL meta tag (og:url) with the canonical URL, as recommended by Facebook et al
  config.opengraph_url#= true
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
zhulei-canonical-rails-0.2.4 lib/generators/canonical_rails/install/templates/canonical_rails.rb