Fix healthcheck do not check https

pull/2391/head
Louis Lam 1 year ago
parent 02b5cae577
commit 5176fd02c1

@ -19,3 +19,6 @@ indent_size = 2
[*.vue] [*.vue]
trim_trailing_whitespace = false trim_trailing_whitespace = false
[*.go]
indent_style = tab

@ -49,7 +49,7 @@ func main() {
} }
protocol := "" protocol := ""
if len(sslKey) != 0 && len(sslCert) == 0 { if len(sslKey) != 0 && len(sslCert) != 0 {
protocol = "https" protocol = "https"
} else { } else {
protocol = "http" protocol = "http"

Loading…
Cancel
Save