前提・実現したいこと
デプロイ後にCSSが反映されず、画像も表示されません。
bundle exec rails assets:precompile RAILS_ENV=productionは実行しました。
こちらの記事やこちらの記事に書いてあること、pumaの再起動などを実行しましたが、どれも結果は変わりませんでした。
画像のpathはasset_pathにしています。
どなたか分かる方教えてもらえますでしょうか。
よろしくお願いします
発生している問題・エラーメッセージ
net::ERR_ABORTED 404 (Not Found) 404 (Not Found)
試したこと
$ find app/assets/ -type f -exec touch {} ;
$ rake assets:clobber assets:precompile
したあと、bundle exec rails assets:precompile RAILS_ENV=productionして、nginxのリロード。
production.rbの設定修正
− config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?
- config.public_file_server.enabled = true
nginx.confの設定変更
sendfile off;
いずれも効果はありませんでした。
回答1件
あなたの回答
tips
プレビュー