Reorder port usage

Signed-off-by: Thomas Klaehn <thomas.klaehn@perinet.io>
This commit is contained in:
Thomas Klaehn
2025-09-11 08:10:59 +02:00
parent 782e673686
commit 355ee97c17
5 changed files with 6 additions and 4 deletions

View File

@@ -34,7 +34,7 @@ func main() {
apiservice_printer.AddHandler()
apiservice_relay.AddHandler()
port := ":5005"
port := ":80"
http.Handle("/", http.FileServer(http.Dir(webui_path)))
logger.Fatal(http.ListenAndServe(port, nil))
}