Documentation
¶
Index ¶
- Variables
- type Asset
- type Auth
- type Cache
- type ClaimsSelectorConf
- type Config
- type Debug
- type HTTP
- type Log
- type Middleware
- type MigrationSelectorConf
- type OIDC
- type Policy
- type PolicySelector
- type PreSignedURL
- type RegexRuleConf
- type RegexSelectorConf
- type Reva
- type Route
- type RouteType
- type Service
- type StaticSelectorConf
- type TokenManager
- type Tracing
Constants ¶
This section is empty.
Variables ¶
var ( // RouteTypes is an array of the available route types RouteTypes []RouteType = []RouteType{QueryRoute, RegexRoute, PrefixRoute} )
Functions ¶
This section is empty.
Types ¶
type ClaimsSelectorConf ¶
type ClaimsSelectorConf struct { DefaultPolicy string `mapstructure:"default_policy"` UnauthenticatedPolicy string `mapstructure:"unauthenticated_policy"` SelectorCookieName string `mapstructure:"selector_cookie_name"` }
ClaimsSelectorConf is the config for the claims-selector
type Config ¶
type Config struct { File string Log Log Debug Debug HTTP HTTP Service Service Tracing Tracing Asset Asset Policies []Policy OIDC OIDC TokenManager TokenManager PolicySelector *PolicySelector `mapstructure:"policy_selector"` Reva Reva PreSignedURL PreSignedURL AccountBackend string UserOIDCClaim string UserCS3Claim string AutoprovisionAccounts bool EnableBasicAuth bool InsecureBackends bool Context context.Context Supervised bool }
Config combines all available configuration parts.
type MigrationSelectorConf ¶
type MigrationSelectorConf struct { AccFoundPolicy string `mapstructure:"acc_found_policy"` AccNotFoundPolicy string `mapstructure:"acc_not_found_policy"` UnauthenticatedPolicy string `mapstructure:"unauthenticated_policy"` }
MigrationSelectorConf is the config for the migration-selector
type OIDC ¶
OIDC is the config for the OpenID-Connect middleware. If set the proxy will try to authenticate every request with the configured oidc-provider
type PolicySelector ¶
type PolicySelector struct { Static *StaticSelectorConf Migration *MigrationSelectorConf Claims *ClaimsSelectorConf Regex *RegexSelectorConf }
PolicySelector is the toplevel-configuration for different selectors
type PreSignedURL ¶
PreSignedURL is the config for the presigned url middleware
type RegexRuleConf ¶
type RegexSelectorConf ¶
type RegexSelectorConf struct { DefaultPolicy string `mapstructure:"default_policy"` MatchesPolicies []RegexRuleConf `mapstructure:"matches_policies"` UnauthenticatedPolicy string `mapstructure:"unauthenticated_policy"` SelectorCookieName string `mapstructure:"selector_cookie_name"` }
RegexSelectorConf is the config for the regex-selector
type Reva ¶
type Reva struct { Address string Middleware Middleware }
Reva defines all available REVA configuration.
type Route ¶
type Route struct { Type RouteType Endpoint string Backend string ApacheVHost bool `mapstructure:"apache-vhost"` }
Route define forwarding routes
type RouteType ¶
type RouteType string
RouteType defines the type of a route
const ( // PrefixRoute are routes matched by a prefix PrefixRoute RouteType = "prefix" // QueryRoute are routes machted by a prefix and query parameters QueryRoute RouteType = "query" // RegexRoute are routes matched by a pattern RegexRoute RouteType = "regex" // DefaultRouteType is the PrefixRoute DefaultRouteType RouteType = PrefixRoute )
type StaticSelectorConf ¶
type StaticSelectorConf struct {
Policy string
}
StaticSelectorConf is the config for the static-policy-selector
type TokenManager ¶
type TokenManager struct {
JWTSecret string
}
TokenManager is the config for using the reva token manager