mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 02:15:48 +02:00
16 lines
552 B
Go
16 lines
552 B
Go
package settings
|
|
|
|
type Nginx struct {
|
|
AccessLogPath string `json:"access_log_path" binding:"omitempty,file"`
|
|
ErrorLogPath string `json:"error_log_path" binding:"omitempty,file"`
|
|
ConfigDir string `json:"config_dir" protected:"true"`
|
|
PIDPath string `json:"pid_path" protected:"true"`
|
|
TestConfigCmd string `json:"test_config_cmd" protected:"true"`
|
|
ReloadCmd string `json:"reload_cmd" protected:"true"`
|
|
RestartCmd string `json:"restart_cmd" protected:"true"`
|
|
}
|
|
|
|
var NginxSettings = Nginx{
|
|
AccessLogPath: "",
|
|
ErrorLogPath: "",
|
|
}
|