Skip to content

Commit a5ca866

Browse files
authored
Traefik entryPoints.<name>.http.encodedCharacters (SchemaStore#5238)
* added encodedCharacters from Traefik 3.6.4 * added encodedCharacters from Traefik 2.11.32
1 parent 3058c91 commit a5ca866

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed

src/schemas/json/traefik-v2.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -895,6 +895,33 @@
895895
},
896896
"type": "object"
897897
},
898+
"staticEncodedCharacters": {
899+
"additionalProperties": false,
900+
"properties": {
901+
"allowEncodedSlash": {
902+
"type": "boolean"
903+
},
904+
"allowEncodedBackSlash": {
905+
"type": "boolean"
906+
},
907+
"allowEncodedNullCharacter": {
908+
"type": "boolean"
909+
},
910+
"allowEncodedSemicolon": {
911+
"type": "boolean"
912+
},
913+
"allowEncodedPercent": {
914+
"type": "boolean"
915+
},
916+
"allowEncodedQuestionMark": {
917+
"type": "boolean"
918+
},
919+
"allowEncodedHash": {
920+
"type": "boolean"
921+
}
922+
},
923+
"type": "object"
924+
},
898925
"staticEntryPoint": {
899926
"additionalProperties": false,
900927
"properties": {
@@ -1039,6 +1066,9 @@
10391066
"staticHTTPConfig": {
10401067
"additionalProperties": false,
10411068
"properties": {
1069+
"encodedCharacters": {
1070+
"$ref": "#/$defs/staticEncodedCharacters"
1071+
},
10421072
"encodeQuerySemicolons": {
10431073
"type": "boolean"
10441074
},

src/schemas/json/traefik-v3.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -842,6 +842,33 @@
842842
},
843843
"type": "object"
844844
},
845+
"staticEncodedCharacters": {
846+
"additionalProperties": false,
847+
"properties": {
848+
"allowEncodedSlash": {
849+
"type": "boolean"
850+
},
851+
"allowEncodedBackSlash": {
852+
"type": "boolean"
853+
},
854+
"allowEncodedNullCharacter": {
855+
"type": "boolean"
856+
},
857+
"allowEncodedSemicolon": {
858+
"type": "boolean"
859+
},
860+
"allowEncodedPercent": {
861+
"type": "boolean"
862+
},
863+
"allowEncodedQuestionMark": {
864+
"type": "boolean"
865+
},
866+
"allowEncodedHash": {
867+
"type": "boolean"
868+
}
869+
},
870+
"type": "object"
871+
},
845872
"staticEntryPoint": {
846873
"additionalProperties": false,
847874
"properties": {
@@ -1010,6 +1037,9 @@
10101037
"staticHTTPConfig": {
10111038
"additionalProperties": false,
10121039
"properties": {
1040+
"encodedCharacters": {
1041+
"$ref": "#/$defs/staticEncodedCharacters"
1042+
},
10131043
"encodeQuerySemicolons": {
10141044
"type": "boolean"
10151045
},

0 commit comments

Comments
 (0)