HTTP method schema, for Caddy's method matcher (match.method).
Real Caddy's MatchMethod is []string -- genuinely unrestricted, not
an enum of standard methods. Verified via caddy validate: a matcher
with "method": ["CONNECT", "TRACE", "PURGE"] (two methods this schema
used to reject, plus a fully custom/nonstandard one) validates
successfully. A stricter enum here would wrongly reject legitimate
configs matching on CONNECT/TRACE or a custom verb.
HTTP method schema, for Caddy's method matcher (
match.method).Real Caddy's
MatchMethodis[]string-- genuinely unrestricted, not an enum of standard methods. Verified viacaddy validate: a matcher with"method": ["CONNECT", "TRACE", "PURGE"](two methods this schema used to reject, plus a fully custom/nonstandard one) validates successfully. A stricter enum here would wrongly reject legitimate configs matching on CONNECT/TRACE or a custom verb.