You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/backend/metadata.display.yaml
+12-16Lines changed: 12 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -57,8 +57,8 @@ spec:
57
57
header_name:
58
58
name: header_name
59
59
title: Header Name
60
-
regexValidation: ^[!#$%&'*+.^_\\`|~0-9A-Za-z-]+$
61
-
validation: Must be a valid HTTP header name consisting of letters, digits, and these special characters: ! # $ % & ' * + . ^ _ \ | ~ -`. No spaces or other special characters allowed
60
+
regexValidation: ^[A-Za-z][A-Za-z0-9-]{0,62}$
61
+
validation: Must be a valid HTTP header name: start with a letter, contain only letters (A–Z, a–z), digits (0–9), or hyphens (-), and be at most 63 characters long
62
62
cache_key_policy:
63
63
name: cache_key_policy
64
64
title: Cache Key Policy
@@ -67,22 +67,22 @@ spec:
67
67
name: query_string_blacklist
68
68
title: Query String Blacklist
69
69
regexValidation: ^[a-zA-Z0-9_-]+$
70
-
validation: Must be a valid query string parameter name.
70
+
validation: Must only contain letters (a–z, A–Z), numbers (0–9), underscores (_), or hyphens (-)
71
71
query_string_whitelist:
72
72
name: query_string_whitelist
73
73
title: Query String Whitelist
74
74
regexValidation: ^[a-zA-Z0-9_-]+$
75
-
validation: Must be a valid query string parameter name.
75
+
validation: Must only contain letters (a–z, A–Z), numbers (0–9), underscores (_), or hyphens (-)
76
76
include_http_headers:
77
77
name: include_http_headers
78
78
title: Include Http Headers
79
-
regexValidation: ^[!#$%&'*+.^_\\`|~0-9A-Za-z-]+$
80
-
validation: Must be a valid HTTP header name consisting of letters, digits, and these special characters: ! # $ % & ' * + . ^ _ \ | ~ -`. No spaces or other special characters allowed
79
+
regexValidation: ^[A-Za-z][A-Za-z0-9-]{0,62}$
80
+
validation: Must be a valid HTTP header name: start with a letter, contain only letters (A–Z, a–z), digits (0–9), or hyphens (-), and be at most 63 characters long
81
81
include_named_cookies:
82
82
name: include_named_cookies
83
83
title: Include Named Cookies
84
-
regexValidation: ^[a-zA-Z0-9\-_\.]+$
85
-
validation: Must contain cookie names with only letters, digits, hyphens (-), underscores (_), or dots (.), with no spaces.
validation: "Must be a valid cookie name: 1–63 characters, containing only letters (A–Z, a–z), digits (0–9), and the special characters [! # % & ' * + . ^ _ | ~ -]"
86
86
compression_mode:
87
87
name: compression_mode
88
88
title: Compression Mode
@@ -97,13 +97,13 @@ spec:
97
97
custom_request_headers:
98
98
name: custom_request_headers
99
99
title: Custom Request Headers
100
-
regexValidation: ^[!#$%&'*+.^_\\`|~0-9A-Za-z-]+$
101
-
validation: Must be a valid HTTP header name consisting of letters, digits, and these special characters: ! # $ % & ' * + . ^ _ \ | ~ -`. No spaces or other special characters allowed
100
+
regexValidation: ^[A-Za-z][A-Za-z0-9-]{0,62}$
101
+
validation: Must be a valid HTTP header name: start with a letter, contain only letters (A–Z, a–z), digits (0–9), or hyphens (-), and be at most 63 characters long
102
102
custom_response_headers:
103
103
name: custom_response_headers
104
104
title: Custom Response Headers
105
-
regexValidation: ^[!#$%&'*+.^_\\`|~0-9A-Za-z-]+$
106
-
validation: Must be a valid HTTP header name consisting of letters, digits, and these special characters: ! # $ % & ' * + . ^ _ \ | ~ -`. No spaces or other special characters allowed
105
+
regexValidation: ^[A-Za-z][A-Za-z0-9-]{0,62}$
106
+
validation: Must be a valid HTTP header name: start with a letter, contain only letters (A–Z, a–z), digits (0–9), or hyphens (-), and be at most 63 characters long
0 commit comments