nginx_ui/nginx-ui-dev/settings/logrotate.go

14 lines
293 B
Go
Raw Permalink Normal View History

2025-03-04 19:28:12 +08:00
package settings
type Logrotate struct {
Enabled bool `json:"enabled"`
CMD string `json:"cmd" protected:"true"`
Interval int `json:"interval"`
}
var LogrotateSettings = &Logrotate{
Enabled: false,
CMD: "logrotate /etc/logrotate.d/nginx",
Interval: 1440, // 24 hours
}