summaryrefslogtreecommitdiff
path: root/cmd/caddy2/main.go
diff options
context:
space:
mode:
authorMatthew Holt <mholt@users.noreply.github.com>2019-06-04 13:52:37 -0600
committerMatthew Holt <mholt@users.noreply.github.com>2019-06-04 13:52:37 -0600
commit613aecb8982d4addfcc01dc339ebbfcf0fd1e445 (patch)
tree839b6c5cd57ce07c302fd87b5d1a0acc571479e3 /cmd/caddy2/main.go
parent39db06d9c4bdf6bb793916225b8915bf777642b4 (diff)
Change import paths to GitHub package names
Diffstat (limited to 'cmd/caddy2/main.go')
-rw-r--r--cmd/caddy2/main.go22
1 files changed, 11 insertions, 11 deletions
diff --git a/cmd/caddy2/main.go b/cmd/caddy2/main.go
index 7d702f0..d0289ec 100644
--- a/cmd/caddy2/main.go
+++ b/cmd/caddy2/main.go
@@ -1,19 +1,19 @@
package main
import (
- caddycmd "bitbucket.org/lightcodelabs/caddy2/cmd"
+ caddycmd "github.com/caddyserver/caddy2/cmd"
// this is where modules get plugged in
- _ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp"
- _ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/caddylog"
- _ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/fileserver"
- _ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/headers"
- _ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/markdown"
- _ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/requestbody"
- _ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/reverseproxy"
- _ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/rewrite"
- _ "bitbucket.org/lightcodelabs/caddy2/modules/caddytls"
- _ "bitbucket.org/lightcodelabs/caddy2/modules/caddytls/standardstek"
+ _ "github.com/caddyserver/caddy2/modules/caddyhttp"
+ _ "github.com/caddyserver/caddy2/modules/caddyhttp/caddylog"
+ _ "github.com/caddyserver/caddy2/modules/caddyhttp/fileserver"
+ _ "github.com/caddyserver/caddy2/modules/caddyhttp/headers"
+ _ "github.com/caddyserver/caddy2/modules/caddyhttp/markdown"
+ _ "github.com/caddyserver/caddy2/modules/caddyhttp/requestbody"
+ _ "github.com/caddyserver/caddy2/modules/caddyhttp/reverseproxy"
+ _ "github.com/caddyserver/caddy2/modules/caddyhttp/rewrite"
+ _ "github.com/caddyserver/caddy2/modules/caddytls"
+ _ "github.com/caddyserver/caddy2/modules/caddytls/standardstek"
)
func main() {