In meinem lokalen Server funktioniert alles gut, aber in der Produktion (EC2 Amazon) einige, aber nicht alle meiner Schriften und Bilder nicht geladen.Keine Bilder und Schriften Produktion mit Capistrano und Rails
Dies ist application.rb:
require File.expand_path('../boot', __FILE__)
# Pick the frameworks you want:
require "active_model/railtie"
require "active_record/railtie"
require "action_controller/railtie"
require "action_mailer/railtie"
require "action_view/railtie"
require "sprockets/railtie"
require 'carrierwave'
require 'carrierwave/orm/activerecord'
# require "rails/test_unit/railtie"
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)
module TestApp
class Application < Rails::Application
#adding fonts to assets pipeline
config.assets.paths << Rails.root.join("app", "assets", "fonts")
# Settings in config/environments/* take precedence over those specified here.
# Application configuration should go into files in config/initializers
# -- all .rb files in that directory are automatically loaded.
config.autoload_paths << Rails.root.join('lib')
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
# config.time_zone = 'Central Time (US & Canada)'
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
#config.i18n.default_locale = :ru
config.serve_static_files = true
config.serve_static_assets = true
config.assets.compile = true
end
end
Speichert carrierwave Bilder nicht im 'public'-Ordner (wie Büroklammer)? – Vucko