summaryrefslogtreecommitdiff
path: root/modules/caddytls/tls.go
diff options
context:
space:
mode:
authorMatthew Holt <mholt@users.noreply.github.com>2019-09-10 13:11:27 -0600
committerMatthew Holt <mholt@users.noreply.github.com>2019-09-10 13:11:27 -0600
commit1ce10b453fbfd01aae7887c4ff8e5730f7908f50 (patch)
treedb9475d0d91d11c86a3d15d9a060af9ad8e3177e /modules/caddytls/tls.go
parent0c8ad52be127add6f2c050230f1f166ecbde813c (diff)
Require Go 1.13; use Go 1.13's default support for TLS 1.3
Diffstat (limited to 'modules/caddytls/tls.go')
-rw-r--r--modules/caddytls/tls.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/modules/caddytls/tls.go b/modules/caddytls/tls.go
index 88b7790..62ec98d 100644
--- a/modules/caddytls/tls.go
+++ b/modules/caddytls/tls.go
@@ -18,9 +18,7 @@ import (
"crypto/tls"
"encoding/json"
"fmt"
- "log"
"net/http"
- "os"
"time"
"github.com/caddyserver/caddy/v2"
@@ -31,12 +29,6 @@ import (
func init() {
caddy.RegisterModule(TLS{})
-
- // opt-in TLS 1.3 for Go1.12
- // TODO: remove this line when Go1.13 is released.
- if err := os.Setenv("GODEBUG", os.Getenv("GODEBUG")+",tls13=1"); err != nil {
- log.Println("[ERROR] failed to set environment variable: ", err)
- }
}
// TLS represents a process-wide TLS configuration.