Merge pull request #1508 from bhollis/localhost

Port "localhost" preview server URL to v3-stable
v3-stable
Thomas Reynolds 2015-05-03 15:51:20 -07:00
commit bd67f8ad0e
3 changed files with 16 additions and 4 deletions

View File

@ -2,6 +2,8 @@ master
===
* The preview server can now serve over HTTPS using the `--https` flag. It will use an automatic self-signed cert which can be overridden using `--ssl_certificate` and `--ssl_private_key`. These settings can also be set in `config.rb`
* The preview server URL will use 'localhost' rather than '0.0.0.0'.
* The preview server URL will once again use the machine's hostname if available.
3.3.11
===

View File

@ -1,3 +1,5 @@
require 'socket'
# Using Tilt for templating
require 'tilt'
@ -69,7 +71,7 @@ module Middleman
# Which host preview should start on.
# @return [Fixnum]
config.define_setting :host, '0.0.0.0', 'The preview server host'
config.define_setting :host, Socket.gethostname, 'The preview server host'
# Which port preview should start on.
# @return [Fixnum]

View File

@ -21,9 +21,8 @@ module Middleman
@options = opts
mount_instance(new_app)
scheme = https? ? 'https' : 'http'
logger.info "== The Middleman is standing watch at #{scheme}://#{host}:#{port}"
logger.info "== Inspect your site configuration at #{scheme}://#{host}:#{port}/__middleman/"
logger.info "== The Middleman is standing watch at #{uri}"
logger.info "== Inspect your site configuration at #{uri + '__middleman'}"
@initialized ||= false
return if @initialized
@ -264,6 +263,15 @@ module Middleman
end
end
end
# Returns the URI the preview server will run on
# @return [URI]
def uri
host = @host == '0.0.0.0' ? 'localhost' : @host
scheme = https? ? 'https' : 'http'
URI("#{scheme}://#{host}:#{@port}")
end
end
class FilteredWebrickLog < ::WEBrick::Log