2019-11-04 20:13:21 +01: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 02:47:19 +02:00
|
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/encode/brotli"
|
2019-11-04 20:13:21 +01: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-26 23:12:37 +02:00
|
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/map"
|
2020-07-20 20:28:40 +02:00
|
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/push"
|
2019-11-04 20:13:21 +01: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 16:50:26 +02:00
|
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/reverseproxy/forwardauth"
|
2019-11-04 20:13:21 +01:00
|
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/rewrite"
|
|
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/templates"
|
2022-03-08 20:18:32 +01:00
|
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/tracing"
|
2019-11-04 20:13:21 +01:00
|
|
|
)
|