| Safe Haskell | None |
|---|
Keter.Types.V10
- 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
- kconfigEnvironment :: !(Map Text Text)
- type RequiresSecure = Bool
- data Stanza port = Stanza (StanzaRaw port) RequiresSecure
- data StanzaRaw port
- data ProxyActionRaw
- type ProxyAction = (ProxyActionRaw, RequiresSecure)
- addRequiresSecure :: ToJSON a => Bool -> a -> Value
- 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
Constructors
| BundleConfig | |
Fields
| |
data ListeningPort Source
Constructors
| LPSecure !HostPreference !Port !FilePath !FilePath | |
| LPInsecure !HostPreference !Port |
Instances
data KeterConfig Source
Constructors
| KeterConfig | |
Fields
| |
type RequiresSecure = BoolSource
Whether we should force redirect to HTTPS routes.
Constructors
| Stanza (StanzaRaw port) RequiresSecure |
Instances
| ToJSON (Stanza ()) | |
| ParseYamlFile (Stanza ()) |
data ProxyActionRaw 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.
Constructors
| PAPort Port | |
| PAStatic StaticFilesConfig | |
| PARedirect RedirectConfig | |
| PAReverseProxy ReverseProxyConfig |
Instances
| Show ProxyActionRaw |
type ProxyAction = (ProxyActionRaw, RequiresSecure)Source
addRequiresSecure :: ToJSON a => Bool -> a -> ValueSource
addStanzaType :: ToJSON a => Value -> a -> ValueSource
data StaticFilesConfig Source
Constructors
| StaticFilesConfig | |
Fields
| |
data RedirectConfig Source
Constructors
| RedirectConfig | |
Fields
| |
data RedirectDest Source
Instances
data WebAppConfig port Source
Constructors
| WebAppConfig | |
Fields
| |
Instances
| Show port => Show (WebAppConfig port) | |
| ToJSON (WebAppConfig ()) | |
| ParseYamlFile (WebAppConfig ()) | |
| ToCurrent (WebAppConfig ()) |
data BackgroundConfig Source
Constructors
| BackgroundConfig | |
Fields
| |
Instances