mirror of
https://github.com/caddyserver/caddy.git
synced 2024-11-30 04:33:48 +08:00
341d4fb805
Brotli encoder, jsonc and json5 config adapters, and the unfinished HTTP cache handler are removed. They will be available in separate repos.
18 lines
849 B
Go
18 lines
849 B
Go
package standard
|
|
|
|
import (
|
|
// standard Caddy HTTP app modules
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp"
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/caddyauth"
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/encode"
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/encode/gzip"
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/encode/zstd"
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/fileserver"
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/headers"
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/requestbody"
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/reverseproxy"
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/reverseproxy/fastcgi"
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/rewrite"
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/templates"
|
|
)
|