summaryrefslogtreecommitdiff
path: root/system/tls
diff options
context:
space:
mode:
authorSteve Manuel <nilslice@gmail.com>2016-10-21 13:38:35 -0700
committerSteve Manuel <nilslice@gmail.com>2016-10-21 13:38:35 -0700
commita6e8f666f20f23017dcbe898f1614776427c49f8 (patch)
tree273ad8f7e0d455b6380aeb80dc8784219bf410a9 /system/tls
parent5774f56b2ba029b0401a6c1b3956d9f1b6017356 (diff)
testing 443 as only tls bound port
Diffstat (limited to 'system/tls')
-rw-r--r--system/tls/init.go2
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},
}