注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
require 'webrick' opts = { :BindAddress => IP, :Port => PORT, :DocumentRoot => DOC, :CGIInterpret... require 'webrick' opts = { :BindAddress => IP, :Port => PORT, :DocumentRoot => DOC, :CGIInterpreter => CGI_PATH, :DoNotReverseLookup => true #これを入れる } Webrickのソース見たところ webrick/utils.rb 55行めあたりの、gethostbynameが悪さを起こしている様子 ## # The server hostname def getservername host = Socket::gethostname begin Socket::gethostbyname(host)[0] rescue host end end Linux系の場合、名前解決系ファイル /etc/sysconf HOSTNAME=cent62.muka
2015/12/04 リンク