50 lines
2.1 KiB
YAML
50 lines
2.1 KiB
YAML
- variable: rewriteResponseHeaders
|
|
label: Rewrite Response Headers
|
|
schema:
|
|
type: list
|
|
default: []
|
|
items:
|
|
- variable: rewriteResponseHeadersEntry
|
|
label: ""
|
|
schema:
|
|
additional_attrs: true
|
|
type: dict
|
|
attrs:
|
|
- variable: name
|
|
label: Name
|
|
schema:
|
|
type: string
|
|
required: true
|
|
- variable: headers
|
|
label: Headers To Rewrite
|
|
schema:
|
|
type: list
|
|
default: []
|
|
items:
|
|
- variable: headersEntry
|
|
label: ""
|
|
schema:
|
|
additional_attrs: true
|
|
type: dict
|
|
attrs:
|
|
- variable: name
|
|
label: Header Name
|
|
description: Name of a header to modified in responses, eg. X-Custom-Header
|
|
schema:
|
|
valid_chars: ^[a-zA-Z0-9_\-]*$
|
|
type: string
|
|
required: true
|
|
default: ""
|
|
- variable: regex
|
|
label: Regex
|
|
description: The value of the header to match. Accepts regex expression.
|
|
schema:
|
|
type: string
|
|
default: ""
|
|
- variable: replacement
|
|
label: Replacement Regex
|
|
description: The new value of the header. Accepts regex expression.
|
|
schema:
|
|
type: string
|
|
default: ""
|