Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
全て。
私は Rails アプリを持っており、開発環境では画像がページに表示されますが、プロダクション モードにすると、すべての画像が 404 not found と応答します。
Rails バージョン: 3.0.7 Web サーバー: シン
config/environments/production.rb で config.serve_static_assets = false を true に変更します。ただし、実際の生産マシンではオフにすることを忘れないでください。シン、ユニコーンなどは、静的ファイルを提供するためのものではありません。アプリ サーバーの前に apache または nginx を使用して、アプリ サーバーの複数のインスタンスの負荷を分散し、静的ファイルを提供する必要があります。
ユーザーrubishへのすべてのクレジット