Skip to content

Commit 53ed12b

Browse files
authored
Merge pull request #4163 from Jasparigus/stream_error_correction
Fix Container Bootloop if Stream is used for http/https ports
2 parents cb3e4ed + 87998a0 commit 53ed12b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

backend/schema/components/stream-object.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@
1919
"incoming_port": {
2020
"type": "integer",
2121
"minimum": 1,
22-
"maximum": 65535
22+
"maximum": 65535,
23+
"if": {"properties": {"tcp_forwarding": {"const": true}}},
24+
"then": {"not": {"oneOf": [{"const": 80}, {"const": 443}]}}
2325
},
2426
"forwarding_host": {
2527
"anyOf": [

0 commit comments

Comments
 (0)