2019-11-04 12:13:21 -07: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 12:13:21 -07: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-13 19:38:18 +02:00
|
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/intercept"
|
2024-03-05 19:03:59 -05:00
|
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/logging"
|
2020-06-27 09:12:37 +12:00
|
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/map"
|
2023-03-31 23:44:53 +02:00
|
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/proxyprotocol"
|
2020-07-20 12:28:40 -06:00
|
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/push"
|
2019-11-04 12:13:21 -07: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 10:50:26 -04:00
|
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/reverseproxy/forwardauth"
|
2019-11-04 12:13:21 -07: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 12:13:21 -07:00
|
|
|
)
|