Class Oauth2ProxyServer
Oauth2Proxy header model.
Namespace: Neon.Kube.Oauth2Proxy
Assembly: Neon.Kube.dll
Syntax
public class Oauth2ProxyServer
Constructors
Oauth2ProxyServer()
Constructor.
Declaration
public Oauth2ProxyServer()
Properties
BindAddress
The address on which to serve traffic. Leave blank or set to "-" to disable.
Declaration
[JsonProperty(PropertyName = "BindAddress", Required = Required.Always)]
[YamlMember(Alias = "BindAddress", ApplyNamingConventions = false)]
public string BindAddress { get; set; }
Property Value
Type | Description |
---|---|
string |
SecureBindAddress
The address on which to serve secure traffic. Leave blank or set to "-" to disable.
Declaration
[JsonProperty(PropertyName = "SecureBindAddress", Required = Required.Always)]
[YamlMember(Alias = "SecureBindAddress", ApplyNamingConventions = false)]
public string SecureBindAddress { get; set; }
Property Value
Type | Description |
---|---|
string |
TLS
The address on which to serve secure traffic. Leave blank or set to "-" to disable.
Declaration
[JsonProperty(PropertyName = "TLS", Required = Required.Always)]
[YamlMember(Alias = "TLS", ApplyNamingConventions = false)]
public Oauth2ProxyTls TLS { get; set; }
Property Value
Type | Description |
---|---|
Oauth2ProxyTls |