Rails起動時に、デフォルトで -b 0.0.0.0を付加する場合、
boot.rbへの追記で出来るようなのですが、
Rails6には対応していないようです。
参考 https://qiita.com/KTakata/items/f836f6e87ea29173a1d4
どのような追記をすれば良いのでしょうか?
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', dir)
require "bundler/setup" # Set up gems listed in the Gemfile.
require "bootsnap/setup" # Speed up boot time by caching expensive operations.
require 'rails/commands/server'
module Rails
class Server
def default_options
super.merge(Host: '0.0.0.0')
end
end
end
あなたの回答
tips
プレビュー