Fix bootloop if stream is used for http/https port
This commit is contained in:
parent
25a26d6175
commit
87998a03ce
1 changed files with 3 additions and 1 deletions
|
@ -19,7 +19,9 @@
|
|||
"incoming_port": {
|
||||
"type": "integer",
|
||||
"minimum": 1,
|
||||
"maximum": 65535
|
||||
"maximum": 65535,
|
||||
"if": {"properties": {"tcp_forwarding": {"const": true}}},
|
||||
"then": {"not": {"oneOf": [{"const": 80}, {"const": 443}]}}
|
||||
},
|
||||
"forwarding_host": {
|
||||
"anyOf": [
|
||||
|
|
Loading…
Reference in a new issue