disable reverse lookup
This commit is contained in:
parent
51cf55ebec
commit
d8bf10d761
|
@ -20,7 +20,8 @@ module Jekyll
|
||||||
s = HTTPServer.new(
|
s = HTTPServer.new(
|
||||||
:Port => options['port'],
|
:Port => options['port'],
|
||||||
:BindAddress => options['host'],
|
:BindAddress => options['host'],
|
||||||
:MimeTypes => mime_types
|
:MimeTypes => mime_types,
|
||||||
|
:DoNotReverseLookup => true
|
||||||
)
|
)
|
||||||
|
|
||||||
s.mount(options['baseurl'], HTTPServlet::FileHandler, destination, fh_option)
|
s.mount(options['baseurl'], HTTPServlet::FileHandler, destination, fh_option)
|
||||||
|
|
Loading…
Reference in New Issue