Remove setting ui server address with env var

master
Bas Kloosterman 11 months ago
parent 100a919e34
commit a08f8c2b62
  1. 4
      his/main.go

@ -21,10 +21,6 @@ func main() {
signal.Notify(stop, os.Interrupt)
wg := &sync.WaitGroup{}
if os.Getenv("UI_ADDR") != "" {
uiAddr = os.Getenv("UI_ADDR")
}
if os.Getenv("EXT_ADDR") != "" {
externalApiAddr = "https://" + os.Getenv("EXT_ADDR") + ":" + apiPort
}

Loading…
Cancel
Save