Merge pull request #1232 from lolmaus/patch-1

Webrick should not do reverse DNS lookups
This commit is contained in:
Ben Hollis 2014-03-27 09:18:04 -07:00
commit 299263c7e5

View file

@ -166,9 +166,10 @@ module Middleman
# @return [void]
def setup_webrick(is_logging)
http_opts = {
:BindAddress => host,
:Port => port,
:AccessLog => []
:BindAddress => host,
:Port => port,
:AccessLog => [],
:DoNotReverseLookup => true
}
if is_logging