diff options
author | Matthew Holt <[email protected]> | 2019-11-04 12:13:21 -0700 |
---|---|---|
committer | Matthew Holt <[email protected]> | 2019-11-04 12:13:21 -0700 |
commit | 6011ce120a4b2df9314a800fc93a61f852b766c1 (patch) | |
tree | 9618ae2d2196fb07fff6d0a8bc3b6ea49b03190d /modules/standard | |
parent | 27e288ab19a3a4d9243a8871d5b3c6426478e008 (diff) | |
download | caddy-6011ce120a4b2df9314a800fc93a61f852b766c1.tar.gz caddy-6011ce120a4b2df9314a800fc93a61f852b766c1.zip |
cmd: Move module imports into standard packages
This makes it easier to make "standard" caddy builds, since you'll only
need to add a single import to get all of Caddy's standard modules.
There is a package for all of Caddy's standard modules (modules/standard)
and a package for the HTTP app's standard modules only
(modules/caddyhttp/standard).
We still need to decide which of these, if not all of them, should be
kept in the standard build. Those which aren't should be moved out of
this repo. See #2780.
Diffstat (limited to 'modules/standard')
-rw-r--r-- | modules/standard/import.go | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/standard/import.go b/modules/standard/import.go new file mode 100644 index 000000000..5ecfb4ac4 --- /dev/null +++ b/modules/standard/import.go @@ -0,0 +1,14 @@ +package standard + +import ( + // standard Caddy modules + _ "github.com/caddyserver/caddy/v2/caddyconfig/caddyfile" + _ "github.com/caddyserver/caddy/v2/caddyconfig/json5" + _ "github.com/caddyserver/caddy/v2/caddyconfig/jsonc" + _ "github.com/caddyserver/caddy/v2/modules/caddyhttp/standard" + _ "github.com/caddyserver/caddy/v2/modules/caddytls" + _ "github.com/caddyserver/caddy/v2/modules/caddytls/distributedstek" + _ "github.com/caddyserver/caddy/v2/modules/caddytls/standardstek" + _ "github.com/caddyserver/caddy/v2/modules/filestorage" + _ "github.com/caddyserver/caddy/v2/modules/logging" +) |