Safe Haskell | None |
---|
- data BundleConfig = BundleConfig {
- bconfigStanzas :: !(Vector (Stanza ()))
- bconfigPlugins :: !Object
- data ListeningPort
- data KeterConfig = KeterConfig {
- kconfigDir :: FilePath
- kconfigPortPool :: PortSettings
- kconfigListeners :: !(NonEmptyVector ListeningPort)
- kconfigSetuid :: Maybe Text
- kconfigBuiltinStanzas :: !(Vector (Stanza ()))
- kconfigIpFromHeader :: Bool
- kconfigExternalHttpPort :: !Int
- kconfigExternalHttpsPort :: !Int
- data Stanza port
- data ProxyAction
- addStanzaType :: ToJSON a => Value -> a -> Value
- data StaticFilesConfig = StaticFilesConfig {
- sfconfigRoot :: !FilePath
- sfconfigHosts :: !(Set Host)
- sfconfigListings :: !Bool
- data RedirectConfig = RedirectConfig {
- redirconfigHosts :: !(Set Host)
- redirconfigStatus :: !Int
- redirconfigActions :: !(Vector RedirectAction)
- data RedirectAction = RedirectAction !SourcePath !RedirectDest
- data SourcePath
- = SPAny
- | SPSpecific !Text
- data RedirectDest
- type IsSecure = Bool
- data WebAppConfig port = WebAppConfig {
- waconfigExec :: !FilePath
- waconfigArgs :: !(Vector Text)
- waconfigEnvironment :: !(Map Text Text)
- waconfigApprootHost :: !Host
- waconfigHosts :: !(Set Host)
- waconfigSsl :: !Bool
- waconfigPort :: !port
- data AppInput
- = AIBundle !FilePath !EpochTime
- | AIData !BundleConfig
- data BackgroundConfig = BackgroundConfig {
- bgconfigExec :: !FilePath
- bgconfigArgs :: !(Vector Text)
- bgconfigEnvironment :: !(Map Text Text)
- bgconfigRestartCount :: !RestartCount
- bgconfigRestartDelaySeconds :: !Word
- data RestartCount
- = UnlimitedRestarts
- | LimitedRestarts !Word
Documentation
data BundleConfig Source
BundleConfig | |
|
data ListeningPort Source
data KeterConfig Source
KeterConfig | |
|
StanzaStaticFiles !StaticFilesConfig | |
StanzaRedirect !RedirectConfig | |
StanzaWebApp !(WebAppConfig port) | |
StanzaReverseProxy !ReverseProxyConfig | |
StanzaBackground !BackgroundConfig |
Show port => Show (Stanza port) | |
ToJSON (Stanza ()) | |
ParseYamlFile (Stanza ()) |
data ProxyAction Source
An action to be performed for a requested hostname.
This datatype is very similar to Stanza, but is necessarily separate since:
- Webapps will be assigned ports.
- Not all stanzas have an associated proxy action.
Show ProxyAction |
addStanzaType :: ToJSON a => Value -> a -> ValueSource
data StaticFilesConfig Source
StaticFilesConfig | |
|
data RedirectConfig Source
RedirectConfig | |
|
data RedirectAction Source
data RedirectDest Source
data WebAppConfig port Source
WebAppConfig | |
|
Show port => Show (WebAppConfig port) | |
ToJSON (WebAppConfig ()) | |
ParseYamlFile (WebAppConfig ()) | |
ToCurrent (WebAppConfig ()) |
data BackgroundConfig Source
BackgroundConfig | |
|
data RestartCount Source