Skip to content

Commit d96a398

Browse files
authored
Fix forward_scheme validation in Redirection Host
Should solve error `data/forward_scheme must be equal to one of the allowed values` when configuring a Redirection Host with scheme set to `auto`. #4074
1 parent fe2d889 commit d96a398

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/schema/components/redirection-host-object.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"forward_scheme": {
3030
"type": "string",
31-
"enum": ["http", "https"]
31+
"enum": ["auto", "http", "https"]
3232
},
3333
"forward_domain_name": {
3434
"description": "Domain Name",

0 commit comments

Comments
 (0)