nginx.go 417 B

12345678910111213141516
  1. package settings
  2. type Nginx struct {
  3. AccessLogPath string `json:"access_log_path"`
  4. ErrorLogPath string `json:"error_log_path"`
  5. ConfigDir string `json:"config_dir"`
  6. PIDPath string `json:"pid_path"`
  7. TestConfigCmd string `json:"test_config_cmd"`
  8. ReloadCmd string `json:"reload_cmd"`
  9. RestartCmd string `json:"restart_cmd"`
  10. }
  11. var NginxSettings = Nginx{
  12. AccessLogPath: "",
  13. ErrorLogPath: "",
  14. }