New: Regex Patterns in match_headers
The secrets transform's match_headers list now accepts regex patterns alongside literal header names. Patterns use /…/ delimiters and are compiled at config time as case-insensitive regular expressions matched against canonical header names. Literal entries continue to work and can be mixed with regex entries in the same list.
- source:
type: env
var: MY_API_KEY
replace:
proxy_value: "proxy-key-abc"
match_headers:
- "Authorization" # literal (unchanged)
- "/^X-My-Api-.+/" # regex (new)Fixes
- MITM-generated certificate chains now include the configured signing CA, enabling deployments where clients trust a long-lived root CA and the proxy signs with a short-lived intermediate. Previously, leaf-only certificates caused chain validation failures in such setups.