summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorMatthew Holt <mholt@users.noreply.github.com>2019-05-20 15:46:47 -0600
committerMatthew Holt <mholt@users.noreply.github.com>2019-05-20 15:46:52 -0600
commitd22f64e6d41117c242fc4ecd00179e68b8f118c5 (patch)
treede059f4423337b6d58c6322c110eb6e928f1080e /cmd
parent22995e5655b3d5117743d98bf5c7ba8ed335a2c5 (diff)
Implement headers middleware
Diffstat (limited to 'cmd')
-rw-r--r--cmd/caddy2/main.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/caddy2/main.go b/cmd/caddy2/main.go
index 81f670b..f311e5c 100644
--- a/cmd/caddy2/main.go
+++ b/cmd/caddy2/main.go
@@ -6,6 +6,7 @@ import (
// 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/headers"
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/reverseproxy"
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/staticfiles"
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddytls"