From af4189d1ba49078fbad5e6c74754f9888c9c73fc Mon Sep 17 00:00:00 2001 From: Matteo Suppo Date: Fri, 4 Dec 2015 14:28:50 +0100 Subject: [PATCH] Give the correct port for upload --- info.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/info.go b/info.go index 194d46e4c..6fe3df038 100644 --- a/info.go +++ b/info.go @@ -7,7 +7,7 @@ import ( func infoHandler(c *gin.Context) { c.JSON(200, gin.H{ "http": "http://localhost" + port, - "https": "https://localhost" + port, + "https": "https://localhost" + portSSL, "ws": "ws://localhost" + port, "wss": "wss://localhost" + portSSL, })