Merge pull request #4163 from Jasparigus/stream_error_correction

Fix Container Bootloop if Stream is used for http/https ports
This commit is contained in:
jc21 2024-11-26 07:37:14 +10:00 committed by GitHub
commit 53ed12bcf2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,7 +19,9 @@
"incoming_port": { "incoming_port": {
"type": "integer", "type": "integer",
"minimum": 1, "minimum": 1,
"maximum": 65535 "maximum": 65535,
"if": {"properties": {"tcp_forwarding": {"const": true}}},
"then": {"not": {"oneOf": [{"const": 80}, {"const": 443}]}}
}, },
"forwarding_host": { "forwarding_host": {
"anyOf": [ "anyOf": [