nginx_log.go 197 B

12345678
  1. package settings
  2. type NginxLog struct {
  3. AdvancedIndexingEnabled bool `json:"advanced_indexing_enabled"`
  4. IndexPath string `json:"index_path"`
  5. }
  6. var NginxLogSettings = &NginxLog{}