mirror of
https://github.com/openziti/zrok.git
synced 2025-08-13 17:57:37 +02:00
very basic basic auth (#12)
This commit is contained in:
@ -12,3 +12,12 @@ const (
|
||||
type ProxyConfig struct {
|
||||
AuthScheme AuthScheme `json:"auth_scheme"`
|
||||
}
|
||||
|
||||
type BasicAuth struct {
|
||||
Users []*AuthUser
|
||||
}
|
||||
|
||||
type AuthUser struct {
|
||||
Username string
|
||||
Password string
|
||||
}
|
||||
|
Reference in New Issue
Block a user