From f29c762f298d7c02ecc963ecd99936b86da1bcfa Mon Sep 17 00:00:00 2001 From: Tom Clegg Date: Thu, 24 Mar 2022 11:18:33 -0400 Subject: [PATCH] 18700: Use different ports for WebDAV and WebDAVDownload ext URLs. Arvados-DCO-1.1-Signed-off-by: Tom Clegg --- lib/install/init.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/install/init.go b/lib/install/init.go index 8e7f181c41..db78a282f3 100644 --- a/lib/install/init.go +++ b/lib/install/init.go @@ -112,25 +112,25 @@ func (initcmd *initCommand) RunCommand(prog string, args []string, stdin io.Read Websocket: InternalURLs: "http://0.0.0.0:8005/": {} - ExternalURL: {{printf "%q" ( print "wss://" .Domain ":4436/websocket" ) }} + ExternalURL: {{printf "%q" ( print "wss://" .Domain ":4435/websocket" ) }} Keepbalance: InternalURLs: "http://0.0.0.0:9005/": {} GitHTTP: InternalURLs: "http://0.0.0.0:9001/": {} - ExternalURL: {{printf "%q" ( print "https://" .Domain ":4437/" ) }} + ExternalURL: {{printf "%q" ( print "https://" .Domain ":4436/" ) }} DispatchCloud: InternalURLs: "http://0.0.0.0:9006/": {} Keepproxy: InternalURLs: "http://0.0.0.0:25108/": {} - ExternalURL: {{printf "%q" ( print "https://" .Domain ":4438/" ) }} + ExternalURL: {{printf "%q" ( print "https://" .Domain ":4437/" ) }} WebDAV: InternalURLs: "http://0.0.0.0:9002/": {} - ExternalURL: {{printf "%q" ( print "https://" .Domain ":4439/" ) }} + ExternalURL: {{printf "%q" ( print "https://" .Domain ":4438/" ) }} WebDAVDownload: InternalURLs: "http://0.0.0.0:8004/": {} -- 2.30.2