From ada450f47b0ea5394bc6ff756587ae724cd54269 Mon Sep 17 00:00:00 2001 From: Francis Lavoie Date: Mon, 7 Oct 2024 07:32:28 -0400 Subject: [PATCH] Further deprioritize on-demand rate limiting --- src/docs/markdown/caddyfile/options.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/docs/markdown/caddyfile/options.md b/src/docs/markdown/caddyfile/options.md index a607515..f57fb37 100644 --- a/src/docs/markdown/caddyfile/options.md +++ b/src/docs/markdown/caddyfile/options.md @@ -94,8 +94,6 @@ Possible options are (click on each option to jump to its documentation): on_demand_tls { ask permission - interval - burst } key_type ed25519|p256|p384|rsa2048|rsa4096 cert_issuer ... @@ -568,7 +566,7 @@ The ask endpoint should return _as fast as possible_, in a few milliseconds, ide - **permission** allows custom modules to be used to determine whether a certificate should be issued for a particular name. The module must implement the [`caddytls.OnDemandPermission` interface](https://pkg.go.dev/github.com/caddyserver/caddy/v2/modules/caddytls#OnDemandPermission). An `http` permission module is included, which is what the `ask` option uses, and remains as a shortcut for backwards compatibility. -- **interval** and **burst** allows `` certificate operations within `` interval. ⚠️ These are deprecated and will be removed in a future version, due to not working as intended. +- ⚠️ **interval** and **burst** rate limiting options were available, but are NOT recommended. Remove them from your config if you still have them. ```caddy {