class Falcon::Service::Proxy

def authority

The host that this proxy will receive connections for.
def authority
	@evaluator.authority
end

def endpoint

The upstream endpoint that this proxy will connect to.
def endpoint
	@evaluator.endpoint
end

def name

def name
	"#{self.class} for #{self.authority}"
end

def protocol

The protocol this proxy will use to talk to the upstream host.
def protocol
	endpoint.protocol
end

def root

The root
def root
	@evaluator.root
end

def scheme

The scheme this proxy will use to talk to the upstream host.
def scheme
	endpoint.scheme
end

def ssl_context

The {OpenSSL::SSL::SSLContext} that will be used for incoming connections.
def ssl_context
	@evaluator.ssl_context
end