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