2019-11-05 03:13:21 +08:00
|
|
|
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"
|
2021-03-30 08:47:19 +08:00
|
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/encode/brotli"
|
2019-11-05 03:13:21 +08:00
|
|
|
_ "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"
|
2020-06-27 05:12:37 +08:00
|
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/map"
|
2020-07-21 02:28:40 +08:00
|
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/push"
|
2019-11-05 03:13:21 +08:00
|
|
|
_ "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"
|
|
|
|
)
|