mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 02:15:48 +02:00
9 lines
263 B
Go
9 lines
263 B
Go
package settings
|
|
|
|
type Auth struct {
|
|
IPWhiteList []string `ini:",,allowshadow"`
|
|
BanThresholdMinutes int `json:"ban_threshold_minutes" binding:"min=1"`
|
|
MaxAttempts int `json:"max_attempts" binding:"min=1"`
|
|
}
|
|
|
|
var AuthSettings = Auth{}
|