frontend: make domain optional

Making the domain optional allows usage of bare hostnames for
the servers (e.g. when they're statically configured) and even
IP addresses if someone is so inclined (although presentation
might suffer in this case).
This commit is contained in:
Aluísio Augusto Silva Gonçalves 2021-03-31 16:44:44 -03:00
parent 5b5a09ccbd
commit f81a5308ae
No known key found for this signature in database
GPG Key ID: DA6EA2FACDB1CBD2
2 changed files with 5 additions and 3 deletions

View File

@ -35,7 +35,11 @@ func batchRequest(servers []string, endpoint string, command string) []string {
}(i)
} else {
// Compose URL and send the request
url := "http://" + server + "." + setting.domain + ":" + strconv.Itoa(setting.proxyPort) + "/" + url.PathEscape(endpoint) + "?q=" + url.QueryEscape(command)
hostname := server
if setting.domain != "" {
hostname += "." + setting.domain
}
url := "http://" + hostname + ":" + strconv.Itoa(setting.proxyPort) + "/" + url.PathEscape(endpoint) + "?q=" + url.QueryEscape(command)
go func(url string, i int) {
response, err := http.Get(url)
if err != nil {

View File

@ -80,8 +80,6 @@ func main() {
if *serversPtr == "" {
panic("no server set")
} else if *domainPtr == "" {
panic("no base domain set")
}
setting = settingType{