<% # Recipes for installing RefineryCMS using Capistrano 3.x # Copyright (C) 2015 Harald Eilertsen # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # %> # encoding: utf-8 Refinery::Core.configure do |config| config.rescue_not_found = Rails.env.production? config.force_ssl = <%= fetch(:refinerycms_force_ssl, false) %> config.s3_backend = !(ENV['S3_KEY'].nil? || ENV['S3_SECRET'].nil?) config.dragonfly_custom_backend_class = '<%= fetch(:refinerycms_dragonfly_custom_backend_class) %>' config.dragonfly_custom_backend_opts = <%= fetch(:refinerycms_dragonfly_custom_backend_opts) %> config.base_cache_key = '<%= fetch(:refinerycms_base_cache_key) %>' config.site_name = '<%= fetch(:refinerycms_site_name) %>' config.google_analytics_page_code = '<%= fetch(:refinerycms_google_analytics_page_code) %>' config.authenticity_token_on_frontend = <%= fetch(:refinerycms_authenticity_token_on_frontend) %> config.dragonfly_secret = '<%= fetch(:refinerycms_dragonfly_secret) %>' config.wymeditor_whitelist_tags = <%= fetch(:refinerycms_wymeditor_whitelist_tags) %> config.register_javascript '<%= fetch(:refinerycms_extra_javascript) %>' config.register_stylesheet '<%= fetch(:refinerycms_extra_stylesheet) %>' config.backend_route = '<%= fetch(:refinerycms_backend_route) %>' end