From a87782762d2c7d860b92c7354e1b0ba7a1f9356e Mon Sep 17 00:00:00 2001 From: Vasile Popescu Date: Sat, 19 May 2018 16:07:51 +0200 Subject: [PATCH] Change the default value for the server frontend path The default value of "" is relied on, so the server can fallback on the builtin frontend resources. --- tty-server/server_main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tty-server/server_main.go b/tty-server/server_main.go index 9b16627..2fe5f10 100644 --- a/tty-server/server_main.go +++ b/tty-server/server_main.go @@ -15,7 +15,7 @@ func main() { webAddress := flag.String("web_address", ":80", "The bind address for the web interface") senderAddress := flag.String("sender_address", ":6543", "The bind address for the tty_sender connections") url := flag.String("url", "http://localhost", "The public web URL the server will be accessible at") - frontendPath := flag.String("frontend_path", "frontend", "The path to the frontend resources") + frontendPath := flag.String("frontend_path", "", "The path to the frontend resources") flag.Parse() log := MainLogger