Skip to content

Instantly share code, notes, and snippets.

@chewmanfoo
Last active August 14, 2017 09:28
Show Gist options
  • Select an option

  • Save chewmanfoo/2ab848590e92d45add88 to your computer and use it in GitHub Desktop.

Select an option

Save chewmanfoo/2ab848590e92d45add88 to your computer and use it in GitHub Desktop.
issue with assets - production .log shows the error, but the asset files *do* exist and are readable by everyone
I, [2015-06-14T16:05:33.765008 #49440] INFO -- : Started GET "/escrow-admin/application-5be3a6392202985945a12797cc8d137bcaf72169afe73574346ddec1b8c5ac55.js" for 127.0.0.1 at 2015-06-14 16:05:33 -0500
F, [2015-06-14T16:05:33.765753 #49440] FATAL -- :
ActionController::RoutingError (No route matches [GET] "/escrow-admin/application-5be3a6392202985945a12797cc8d137bcaf72169afe73574346ddec1b8c5ac55.js"):
Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
# Code is not reloaded between requests.
config.cache_classes = true
# Eager load code on boot. This eager loads most of Rails and
# your application in memory, allowing both threaded web servers
# and those relying on copy on write to perform better.
# Rake tasks automatically ignore this option for performance.
config.eager_load = true
# Full error reports are disabled and caching is turned on.
config.consider_all_requests_local = false
config.action_controller.perform_caching = true
# Enable Rack::Cache to put a simple HTTP cache in front of your application
# Add `rack-cache` to your Gemfile before enabling this.
# For large-scale production use, consider using a caching reverse proxy like
# NGINX, varnish or squid.
# config.action_dispatch.rack_cache = true
# Disable serving static files from the `/public` folder by default since
# Apache or NGINX already handles this.
config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
# Compress JavaScripts and CSS.
config.assets.js_compressor = :uglifier
# config.assets.css_compressor = :sass
# Do not fallback to assets pipeline if a precompiled asset is missed.
config.assets.compile = false
# Asset digests allow you to set far-future HTTP expiration dates on all assets,
# yet still be able to expire them through the digest params.
config.assets.digest = true
# `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
# assets prefix
config.assets.prefix = "/escrow-admin"
# Specifies the header that your server uses for sending files.
# config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
# config.force_ssl = true
# Use the lowest log level to ensure availability of diagnostic information
# when problems arise.
config.log_level = :debug
# Prepend all log lines with the following tags.
# config.log_tags = [ :subdomain, :uuid ]
# Use a different logger for distributed setups.
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
# Use a different cache store in production.
# config.cache_store = :mem_cache_store
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
# config.action_controller.asset_host = 'http://assets.example.com'
# Ignore bad email addresses and do not raise email delivery errors.
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
# config.action_mailer.raise_delivery_errors = false
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
# the I18n.default_locale when a translation cannot be found).
config.i18n.fallbacks = true
# Send deprecation notices to registered listeners.
config.active_support.deprecation = :notify
# Use default logging formatter so that PID and timestamp are not suppressed.
config.log_formatter = ::Logger::Formatter.new
# Do not dump schema after migrations.
config.active_record.dump_schema_after_migration = false
end
[root@ltxl0915 escrow-admin]# ls -l public/
total 20
-rwxrwxrwx 1 drawbrdg lighthouse 1564 Jun 12 13:38 404.html
-rwxrwxrwx 1 drawbrdg lighthouse 1547 Jun 12 13:38 422.html
-rwxrwxrwx 1 drawbrdg lighthouse 1477 Jun 12 13:38 500.html
drwxrwxrwx 3 drawbrdg lighthouse 4096 Jun 14 10:14 escrow-admin
-rwxrwxrwx 1 drawbrdg lighthouse 0 Jun 12 13:38 favicon.ico
-rwxrwxrwx 1 drawbrdg lighthouse 202 Jun 12 13:38 robots.txt
[root@ltxl0915 escrow-admin]# ls -l public/escrow-admin/
total 676
-rwxrwxrwx 1 drawbrdg lighthouse 223786 Jun 12 14:19 application-5be3a6392202985945a12797cc8d137bcaf72169afe73574346ddec1b8c5ac55.js
-rwxrwxrwx 1 drawbrdg lighthouse 160454 Jun 12 14:18 application-7d9377b24d3927e30721513c3f5da3bf30abd6a30cb6a6a27042924842d6635b.css
-rwxrwxrwx 1 drawbrdg lighthouse 56976 Jun 12 14:18 foundation-icons-7e1dd03dd4ce90b658052554cd7459df16716717389a552fa4c6d56a5f8933e6.ttf
-rwxrwxrwx 1 drawbrdg lighthouse 32020 Jun 12 14:18 foundation-icons-8c44c3feedae5331a281278ea3ba91d2255928a2f3010d316d6fbb9052e0c2ec.woff
-rwxrwxrwx 1 drawbrdg lighthouse 54568 Jun 12 14:18 foundation-icons-9189cd8788a2d42f89ecb72f08d55cc366a3abc441c3413d9ceca66ec3144e46.eot
-rwxrwxrwx 1 drawbrdg lighthouse 150535 Jun 12 14:18 foundation-icons-ba2d122321cfede034deb120f35abc790a023d29065c36bd53e57039897ad052.svg
drwxrwxrwx 2 drawbrdg lighthouse 4096 Jun 14 10:14 vendor
@viktorsmari

Copy link
Copy Markdown

Did you solve this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment