Falcon SourceFalconServiceVirtualEnvironment

module Environment

Definitions

def service_class

The service class to use for the virtual host.

Signature

returns Class

Implementation

def service_class
	Virtual
end

def configuration_paths

All the falcon application configuration paths.

Signature

returns Array(String)

Paths to the falcon application configuration files.

Implementation

def configuration_paths
	["/srv/http/*/falcon.rb"]
end

def bind_secure

The URI to bind the HTTPS -> falcon host proxy.

Implementation

def bind_secure
	"https://[::]:443"
end

def bind_insecure

The URI to bind the HTTP -> HTTPS redirector.

Implementation

def bind_insecure
	"http://[::]:80"
end

def timeout

The connection timeout to use for incoming connections.

Implementation

def timeout
	10.0
end