module Falcon::Environment::Server
def authority
The server authority. Defaults to the server name.
def authority self.name end
def cache
def cache false end
def client_endpoint
def client_endpoint ::Async::HTTP::Endpoint.parse(url) end
def container_options
def container_options {restart: true, count: self.count}.compact end
def count
Number of instances to start. By default (when nil), uses `Etc.nprocessors`.
def count nil end
def endpoint
The upstream endpoint that will handle incoming requests.
def endpoint ::Async::HTTP::Endpoint.parse(url).with( reuse_address: true, timeout: timeout, ) end
def preload
def preload [] end
def service_class
The service class to use for the proxy.
def service_class Service::Server end
def timeout
def timeout nil end
def url
def url "http://[::]:9292" end
def verbose
def verbose false end