Fix bootloop if stream is used for http/https port

This commit is contained in:
Jasper Stubbe 2024-11-14 11:39:48 -08:00
parent 25a26d6175
commit 87998a03ce

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": [