はじめに
特に設定をしていない場合には、任意のホスト名を指定してアクセスしようとした際に次のようなエラーが発生します。
Blocked host: sample-host.com
To allow requests to sample-host.com, add the following to your environment configuration:
config.hosts << "sample-host.com"
エラー文に記載のとおりホスト名をホワイトリストに追加する必要があります。
ホワイトリストに追加する方法
次のようにconfig/environments/development.rb
に追記しホスト名をホワイトリストに追加します。
development.rb
Rails.application.configure do
config.hosts << "sample-host.com"
end