summaryrefslogtreecommitdiff
path: root/cmd/caddy2
diff options
context:
space:
mode:
authorMatthew Holt <mholt@users.noreply.github.com>2019-06-18 11:13:12 -0600
committerMatthew Holt <mholt@users.noreply.github.com>2019-06-18 11:13:12 -0600
commit6706c9225a8dcb976785bdf2c35eb151d54ac18c (patch)
tree1e278a1261e826d0bda3c924bd179aabd0af2e92 /cmd/caddy2
parent5137859e47678aae81e178ca7d164f9e2b4e3121 (diff)
Implement templates handler; various minor cleanups and bug fixes
Diffstat (limited to 'cmd/caddy2')
-rw-r--r--cmd/caddy2/main.go25
1 files changed, 0 insertions, 25 deletions
diff --git a/cmd/caddy2/main.go b/cmd/caddy2/main.go
deleted file mode 100644
index c2320ef..0000000
--- a/cmd/caddy2/main.go
+++ /dev/null
@@ -1,25 +0,0 @@
-package main
-
-import (
- caddycmd "github.com/caddyserver/caddy/cmd"
-
- // this is where modules get plugged in
- _ "github.com/caddyserver/caddy/modules/caddyhttp"
- _ "github.com/caddyserver/caddy/modules/caddyhttp/caddylog"
- _ "github.com/caddyserver/caddy/modules/caddyhttp/encode"
- _ "github.com/caddyserver/caddy/modules/caddyhttp/encode/brotli"
- _ "github.com/caddyserver/caddy/modules/caddyhttp/encode/gzip"
- _ "github.com/caddyserver/caddy/modules/caddyhttp/encode/zstd"
- _ "github.com/caddyserver/caddy/modules/caddyhttp/fileserver"
- _ "github.com/caddyserver/caddy/modules/caddyhttp/headers"
- _ "github.com/caddyserver/caddy/modules/caddyhttp/markdown"
- _ "github.com/caddyserver/caddy/modules/caddyhttp/requestbody"
- _ "github.com/caddyserver/caddy/modules/caddyhttp/reverseproxy"
- _ "github.com/caddyserver/caddy/modules/caddyhttp/rewrite"
- _ "github.com/caddyserver/caddy/modules/caddytls"
- _ "github.com/caddyserver/caddy/modules/caddytls/standardstek"
-)
-
-func main() {
- caddycmd.Main()
-}