mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-10 18:05:48 +02:00
12 lines
383 B
Go
12 lines
383 B
Go
package settings
|
|
|
|
type Auth struct {
|
|
IPWhiteList []string `json:"ip_white_list" binding:"omitempty,dive,ip" ini:",,allowshadow" protected:"true"`
|
|
BanThresholdMinutes int `json:"ban_threshold_minutes" binding:"min=1"`
|
|
MaxAttempts int `json:"max_attempts" binding:"min=1"`
|
|
}
|
|
|
|
var AuthSettings = &Auth{
|
|
BanThresholdMinutes: 10,
|
|
MaxAttempts: 10,
|
|
}
|