diff options
Diffstat (limited to 'modules/caddytls')
-rw-r--r-- | modules/caddytls/acmemanager.go | 2 | ||||
-rw-r--r-- | modules/caddytls/connpolicy.go | 2 | ||||
-rw-r--r-- | modules/caddytls/fileloader.go | 2 | ||||
-rw-r--r-- | modules/caddytls/folderloader.go | 2 | ||||
-rw-r--r-- | modules/caddytls/matchers.go | 2 | ||||
-rw-r--r-- | modules/caddytls/sessiontickets.go | 2 | ||||
-rw-r--r-- | modules/caddytls/standardstek/stek.go | 4 | ||||
-rw-r--r-- | modules/caddytls/tls.go | 2 |
8 files changed, 9 insertions, 9 deletions
diff --git a/modules/caddytls/acmemanager.go b/modules/caddytls/acmemanager.go index efd8e23..9352d75 100644 --- a/modules/caddytls/acmemanager.go +++ b/modules/caddytls/acmemanager.go @@ -7,7 +7,7 @@ import ( "github.com/go-acme/lego/certcrypto" - "bitbucket.org/lightcodelabs/caddy2" + "github.com/caddyserver/caddy2" "github.com/go-acme/lego/challenge" "github.com/mholt/certmagic" ) diff --git a/modules/caddytls/connpolicy.go b/modules/caddytls/connpolicy.go index 006afe9..c1ca41d 100644 --- a/modules/caddytls/connpolicy.go +++ b/modules/caddytls/connpolicy.go @@ -7,7 +7,7 @@ import ( "fmt" "strings" - "bitbucket.org/lightcodelabs/caddy2" + "github.com/caddyserver/caddy2" "github.com/go-acme/lego/challenge/tlsalpn01" "github.com/mholt/certmagic" ) diff --git a/modules/caddytls/fileloader.go b/modules/caddytls/fileloader.go index 516c632..c633f17 100644 --- a/modules/caddytls/fileloader.go +++ b/modules/caddytls/fileloader.go @@ -5,7 +5,7 @@ import ( "fmt" "io/ioutil" - "bitbucket.org/lightcodelabs/caddy2" + "github.com/caddyserver/caddy2" ) func init() { diff --git a/modules/caddytls/folderloader.go b/modules/caddytls/folderloader.go index 8ec9827..0ce53b7 100644 --- a/modules/caddytls/folderloader.go +++ b/modules/caddytls/folderloader.go @@ -10,7 +10,7 @@ import ( "path/filepath" "strings" - "bitbucket.org/lightcodelabs/caddy2" + "github.com/caddyserver/caddy2" ) func init() { diff --git a/modules/caddytls/matchers.go b/modules/caddytls/matchers.go index a951f91..712472f 100644 --- a/modules/caddytls/matchers.go +++ b/modules/caddytls/matchers.go @@ -3,7 +3,7 @@ package caddytls import ( "crypto/tls" - "bitbucket.org/lightcodelabs/caddy2" + "github.com/caddyserver/caddy2" ) // MatchServerName matches based on SNI. diff --git a/modules/caddytls/sessiontickets.go b/modules/caddytls/sessiontickets.go index 22c9a2f..1d7d9b1 100644 --- a/modules/caddytls/sessiontickets.go +++ b/modules/caddytls/sessiontickets.go @@ -9,7 +9,7 @@ import ( "sync" "time" - "bitbucket.org/lightcodelabs/caddy2" + "github.com/caddyserver/caddy2" ) // SessionTicketService configures and manages TLS session tickets. diff --git a/modules/caddytls/standardstek/stek.go b/modules/caddytls/standardstek/stek.go index a086872..939d021 100644 --- a/modules/caddytls/standardstek/stek.go +++ b/modules/caddytls/standardstek/stek.go @@ -5,8 +5,8 @@ import ( "sync" "time" - "bitbucket.org/lightcodelabs/caddy2" - "bitbucket.org/lightcodelabs/caddy2/modules/caddytls" + "github.com/caddyserver/caddy2" + "github.com/caddyserver/caddy2/modules/caddytls" ) func init() { diff --git a/modules/caddytls/tls.go b/modules/caddytls/tls.go index 6a9c97e..38447ba 100644 --- a/modules/caddytls/tls.go +++ b/modules/caddytls/tls.go @@ -6,7 +6,7 @@ import ( "fmt" "net/http" - "bitbucket.org/lightcodelabs/caddy2" + "github.com/caddyserver/caddy2" "github.com/go-acme/lego/challenge" "github.com/mholt/certmagic" ) |