diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-10-21 13:38:35 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-10-21 13:38:35 -0700 |
commit | a6e8f666f20f23017dcbe898f1614776427c49f8 (patch) | |
tree | 273ad8f7e0d455b6380aeb80dc8784219bf410a9 /system/tls/init.go | |
parent | 5774f56b2ba029b0401a6c1b3956d9f1b6017356 (diff) |
testing 443 as only tls bound port
Diffstat (limited to 'system/tls/init.go')
-rw-r--r-- | system/tls/init.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/tls/init.go b/system/tls/init.go index 557f072..5ffaf33 100644 --- a/system/tls/init.go +++ b/system/tls/init.go @@ -55,7 +55,7 @@ func Enable() { setup() server := &http.Server{ - Addr: ":https", + Addr: ":443", TLSConfig: &tls.Config{GetCertificate: m.GetCertificate}, } |