module Falcon::Environment::Application
def endpoint
The endpoint that will be used for communicating with the application server.
def endpoint ::Falcon::ProxyEndpoint.unix(ipc_path, protocol: protocol, scheme: scheme, authority: authority ) end
def ipc_path
The IPC path to use for communication with the application.
def ipc_path ::File.expand_path("application.ipc", root) end
def middleware
The middleware stack for the application.
def middleware ::Protocol::HTTP::Middleware::HelloWorld end
def protocol
Typically one of {Async::HTTP::Protocol::HTTP1} or {Async::HTTP::Protocl::HTTP2}.
The protocol to use to communicate with the application.
def protocol Async::HTTP::Protocol::HTTP2 end
def scheme
The scheme to use to communicate with the application.
def scheme 'https' end