Merge: - install: fix crash when trying to use uninitialized TLS module

* commit '6690441240f217cc5e6de93fa0803e3c15a50fef':
  - install: fix crash when trying to use uninitialized TLS module
This commit is contained in:
Andrey Meshkov 2020-04-07 23:12:32 +03:00
commit ea38612a1d
1 changed files with 3 additions and 1 deletions

View File

@ -566,7 +566,9 @@ func printHTTPAddresses(proto string) {
var address string
tlsConf := tlsConfigSettings{}
Context.tls.WriteDiskConfig(&tlsConf)
if Context.tls != nil {
Context.tls.WriteDiskConfig(&tlsConf)
}
if proto == "https" && tlsConf.ServerName != "" {
if tlsConf.PortHTTPS == 443 {
log.Printf("Go to https://%s", tlsConf.ServerName)