serve_static_files と public_file_server.enabled の意味
Rails5への移行を行っている途中に以下のようなエラーに出くわしました。
RAILS_ENV=test be rake db:migrate
DEPRECATION WARNING: `config.serve_static_files` is deprecated and will be removed in Rails 5.1.
Please use `config.public_file_server.enabled = true` instead.
エラー内容に従って修正した所エラーは消えましたが、serve_static_files
と public_file_server.enabled
が静的ファイルに関する具体的にどのような振る舞いを指定しているのか検索してもわかりませんでした。
この2つの設定はなんのためにあり、どう変更されたのでしょうか?