web.mx raw

   1  package config
   2  
   3  // WebCfg groups web UI, static serving, and HTTP CORS settings.
   4  type WebCfg struct {
   5  	StaticDir       string
   6  	WebDisable      bool
   7  	WebDevProxyURL  string
   8  	BrandingDir     string
   9  	BrandingEnabled bool
  10  	Theme           string
  11  	CORSEnabled     bool
  12  	CORSOrigins     []string
  13  }
  14