From c48b49c22e34f4051164b463d63c70786ee08db8 Mon Sep 17 00:00:00 2001 From: Michael Bang Date: Thu, 23 May 2024 10:38:41 +0200 Subject: [PATCH] cmd/seb-api: change default port to 51313 --- cmd/seb-api/app/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/seb-api/app/main.go b/cmd/seb-api/app/main.go index 6100fc7..54bf26d 100644 --- a/cmd/seb-api/app/main.go +++ b/cmd/seb-api/app/main.go @@ -131,7 +131,7 @@ func parseFlags() flags { // http fs.StringVar(&f.httpListenAddress, "http-address", "127.0.0.1", "Address to listen for HTTP traffic") - fs.IntVar(&f.httpListenPort, "http-port", 8080, "Port to listen for HTTP traffic") + fs.IntVar(&f.httpListenPort, "http-port", 51313, "Port to listen for HTTP traffic") fs.StringVar(&f.httpAPIKey, "http-api-key", "api-key", "API key for authorizing HTTP requests (this is not safe and needs to be changed)") // http debug