module Falcon::Environment::Virtual
def bind_insecure
def bind_insecure "http://[::]:80" end
def bind_secure
def bind_secure "https://[::]:443" end
def falcon_path
The path to the falcon executable from this gem.
def falcon_path File.expand_path("../../../bin/falcon", __dir__) end
def name
def name service_class.name end
def service_class
The service class to use for the virtual host.
def service_class Service::Virtual end
def timeout
def timeout 10.0 end