mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-16 15:26:40 +00:00
9 lines
271 B
Go
9 lines
271 B
Go
package methods
|
|
|
|
// BearerConfig holds JWT/OAuth/OIDC bearer token authentication settings
|
|
// The actual OIDC/JWT configuration comes from the global proxy Config.OIDCConfig
|
|
// This just enables Bearer auth for a specific route
|
|
type BearerConfig struct {
|
|
Enabled bool
|
|
}
|