You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: caddynet/netserver/tls.go
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -3,16 +3,16 @@ package netserver
3
3
import (
4
4
"fmt"
5
5
6
-
"github.com/mholt/caddy"
7
-
"github.com/mholt/caddy/caddytls"
6
+
"github.com/caddyserver/caddy"
7
+
"github.com/caddyserver/caddy/caddytls"
8
8
"github.com/mholt/certmagic"
9
9
)
10
10
11
11
// activateTLS
12
12
funcactivateTLS(cctx caddy.Context) error {
13
13
operatorPresent:=!caddy.Started()
14
14
15
-
// Follow steps stipulated in https://github.com/mholt/caddy/wiki/Writing-a-Plugin:-Server-Type#automatic-tls (indicated below by numbered comments)
15
+
// Follow steps stipulated in https://github.com/caddyserver/caddy/wiki/Writing-a-Plugin:-Server-Type#automatic-tls (indicated below by numbered comments)
16
16
17
17
// 1. Prints a message to stdout, "Activating privacy features..." (if the operator is present; i.e. caddy.Started() == false) because the process can take a few seconds
0 commit comments