From ac9f2f7b4d9b9106493606f9321c7dbc7fe3eaf8 Mon Sep 17 00:00:00 2001 From: Hector Sanjuan Date: Mon, 9 Oct 2023 11:44:24 +0200 Subject: [PATCH] Change default ports I changed my mind, particulary for co-running gateways. Co-Authored-By: Lidel --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index b1cb37f..a37b0a6 100644 --- a/main.go +++ b/main.go @@ -37,12 +37,12 @@ func main() { }, &cli.IntFlag{ Name: "gateway-port", - Value: 8080, + Value: 8090, Usage: "specify the listen address for the gateway endpoint", }, &cli.IntFlag{ Name: "ctl-port", - Value: 8081, + Value: 8091, Usage: "specify the api listening address for the internal control api", },