Rails サーバー上で Ruby を Javascript に変換するために Opal を使用しています。ローカル マシンのテスト サーバーでは、開発モードと運用モードの両方ですべてが完全に機能します。ただし、ファイルが実際のサーバーにアップロードされると、ActionView::Template::Error
with no メッセージが生成されます。それが示す行はJavascript(Opal)がロードされている行であり、実際にその行を削除するとエラーは消えます(これは明らかに解決策ではありません)。サーバー上のすべてのファイルは、、、およびフォルダとファイルを除いてbin
、ローカル マシン上のファイルと同じです。db
log
tmp
Gemfile.lock
最初は変更されたファイルだけが機能していなかったため、これはキャッシュの問題である可能性があると思いますが、現在はすべてのファイルが壊れているため、確信が持てません。
を使用してtmp
フォルダーを削除しようとしましたが、どれも役に立ちませんでした。gem pristine --all
gem update
解決策を探していますが、エラー メッセージが表示されず、どこから始めればよいかわかりません。
また、サーバーは以前は機能していましたが、最近の変更 (スクリプトが Opal に変換された) によって機能しなくなりました。
これは、エラー ログにある多くの同様のエラー メッセージの 1 つです。
I, [2016-09-15T11:24:58.760385 #18949] INFO -- : [36ec2f26-e1ac-43a1-b3c9-2e211c80bedb] Started GET "/" for 123.211.235.196 at 2016-09-15 11:24:58 +0000
I, [2016-09-15T11:24:58.762917 #18949] INFO -- : [36ec2f26-e1ac-43a1-b3c9-2e211c80bedb] Processing by WelcomeController#index as HTML
I, [2016-09-15T11:24:58.766164 #18949] INFO -- : [36ec2f26-e1ac-43a1-b3c9-2e211c80bedb] Rendering welcome/index.haml within layouts/application
I, [2016-09-15T11:24:58.768033 #18949] INFO -- : [36ec2f26-e1ac-43a1-b3c9-2e211c80bedb] Rendered welcome/index.haml within layouts/application (1.7ms)
I, [2016-09-15T11:25:15.383874 #18949] INFO -- : [36ec2f26-e1ac-43a1-b3c9-2e211c80bedb] Completed 500 Internal Server Error in 16620ms (ActiveRecord: 0.0ms)
F, [2016-09-15T11:25:15.388426 #18949] FATAL -- : [36ec2f26-e1ac-43a1-b3c9-2e211c80bedb]
F, [2016-09-15T11:25:15.388528 #18949] FATAL -- : [36ec2f26-e1ac-43a1-b3c9-2e211c80bedb] ActionView::Template::Error ():
F, [2016-09-15T11:25:15.388756 #18949] FATAL -- : [36ec2f26-e1ac-43a1-b3c9-2e211c80bedb] 4: = csrf_meta_tags
F, [2016-09-15T11:25:15.388803 #18949] FATAL -- : [36ec2f26-e1ac-43a1-b3c9-2e211c80bedb] 5: = favicon_link_tag '/favicon.ico'
F, [2016-09-15T11:25:15.388842 #18949] FATAL -- : [36ec2f26-e1ac-43a1-b3c9-2e211c80bedb] 6: = stylesheet_link_tag params[:controller], media: 'all'
F, [2016-09-15T11:25:15.388880 #18949] FATAL -- : [36ec2f26-e1ac-43a1-b3c9-2e211c80bedb] 7: = javascript_include_tag params[:controller]
F, [2016-09-15T11:25:15.388917 #18949] FATAL -- : [36ec2f26-e1ac-43a1-b3c9-2e211c80bedb] 8: = yield :head
F, [2016-09-15T11:25:15.388953 #18949] FATAL -- : [36ec2f26-e1ac-43a1-b3c9-2e211c80bedb] 9: %body.standard{ class: [yield(:body_class), params[:controller]] }
F, [2016-09-15T11:25:15.388991 #18949] FATAL -- : [36ec2f26-e1ac-43a1-b3c9-2e211c80bedb] 10: #wrapper= yield
F, [2016-09-15T11:25:15.389028 #18949] FATAL -- : [36ec2f26-e1ac-43a1-b3c9-2e211c80bedb]
F, [2016-09-15T11:25:15.389064 #18949] FATAL -- : [36ec2f26-e1ac-43a1-b3c9-2e211c80bedb] app/views/layouts/application.haml:7:in `_app_views_layouts_application_haml__2281947942353102831_69956393327940'
私のconfig/production.rb
は次のとおりです。
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
# Disable serving static files from the `/public` folder by default since
# Apache or NGINX already handles this.
config.public_file_server.enabled = 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 = true
# `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
# config.action_controller.asset_host = 'http://assets.example.com'
# 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
# Mount Action Cable outside main process or domain
# config.action_cable.mount_path = nil
# config.action_cable.url = 'wss://example.com/cable'
# config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\/\/example.*/ ]
# 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 = [ :request_id ]
# Use a different cache store in production.
# config.cache_store = :mem_cache_store
# Use a real queuing backend for Active Job (and separate queues per environment)
# config.active_job.queue_adapter = :resque
# config.active_job.queue_name_prefix = "ontonator_xyz_#{Rails.env}"
config.action_mailer.perform_caching = false
# 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
# Use a different logger for distributed setups.
# require 'syslog/logger'
# config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name')
if ENV["RAILS_LOG_TO_STDOUT"].present?
logger = ActiveSupport::Logger.new(STDOUT)
logger.formatter = config.log_formatter
config.logger = ActiveSupport::TaggedLogging.new(logger)
end
# Do not dump schema after migrations.
config.active_record.dump_schema_after_migration = false
end
編集:
オパールであることが確認できました。CoffeeScript を再度使用すると、問題が発生しなくなりました。
また、問題は現在ローカル マシンで発生しています。これは、コンパイルされたファイルのキャッシュが開発モードで生成されており、これらが運用モードで使用されているためだと思います。サーバー上で開発モードでテストしていないので、わかりませんでした。
設定config.consider_all_requests_local = true
により問題が修正され、削除後も引き続き機能しましたが、関連する Javascript アセットのいずれかが変更されるとすぐに機能しなくなりました。
おそらく私は間違っていconfig.assets.compile = true
ますが、プリコンパイルされていないアセットをサーバーにコンパイルさせるべきではありませんか?
編集2:
config.assets.compile = true
アセットのプリコンパイルでも機能しますが、オプション セットでこれが必要な理由がわかりません。