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]
trim_trailing_whitespace = false
[*.go]
indent_style = tab

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

Loading…
Cancel
Save