1. Caddy version (caddy version
):
2.0.0 or latest version
2. How I run Caddy:
We run caddy as a proxy to serve different web requests from our users.
a. System environment:
We use linux based system.
b. Command:
We use docker based caddy. So we run caddy with docker run:
docker run -it --rm --detach --name default_proxy --log-opt max-size=10m --log-opt max-file=5 --net=host --privileged=true $Proxy_Image --caddyfile=Caddyfile-block --log-level=info
c. Service/unit/compose file:
paste full file contents here
d. My complete Caddyfile or JSON config:
http://*:80/ {
root /var/www/html/
some_ip
tls off
log stdout
}
3. The problem I’m having:
Does the latest version of caddy or version 2.0.0 has built in support for rate limiting? If not, is there any caddy plugin that supports this?