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"
|
2024-05-14 01:38:18 +08:00
|
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/intercept"
|
2024-03-06 08:03:59 +08:00
|
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/logging"
|
2020-06-27 05:12:37 +08:00
|
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/map"
|
2023-04-01 05:44:53 +08:00
|
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/proxyprotocol"
|
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"
|
2022-05-06 22:50:26 +08:00
|
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/reverseproxy/forwardauth"
|
2019-11-05 03:13:21 +08:00
|
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/rewrite"
|
|
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/templates"
|
2022-03-09 03:18:32 +08:00
|
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/tracing"
|
2019-11-05 03:13:21 +08:00
|
|
|
)
|