mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-08 10:23:37 +00:00
Add support for proxy_protocol in proxy_hosts and streams
Closes #1114 Related To #1882 Related To #3537 Related To #3618 Co-authored-by: jwklijnsma <janwiebe@janwiebe.eu> Co-authored-by: SBado <16034687+SBado@users.noreply.github.com>
This commit is contained in:
@@ -23,7 +23,9 @@
|
||||
"locations",
|
||||
"hsts_enabled",
|
||||
"hsts_subdomains",
|
||||
"certificate"
|
||||
"certificate",
|
||||
"proxy_protocol_enabled",
|
||||
"loadbalancer_address"
|
||||
],
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
@@ -137,6 +139,12 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
"proxy_protocol_enabled": {
|
||||
"$ref": "../common.json#/properties/proxy_protocol_enabled"
|
||||
},
|
||||
"loadbalancer_address": {
|
||||
"$ref": "../common.json#/properties/loadbalancer_address"
|
||||
},
|
||||
"owner": {
|
||||
"$ref": "./user-object.json"
|
||||
},
|
||||
|
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"type": "object",
|
||||
"description": "Stream object",
|
||||
"required": ["id", "created_on", "modified_on", "owner_user_id", "incoming_port", "forwarding_host", "forwarding_port", "tcp_forwarding", "udp_forwarding", "enabled", "meta"],
|
||||
"required": ["id", "created_on", "modified_on", "owner_user_id", "incoming_port", "forwarding_host", "forwarding_port", "tcp_forwarding", "udp_forwarding", "enabled", "meta", "proxy_protocol_enabled", "loadbalancer_address"],
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"id": {
|
||||
@@ -55,6 +55,12 @@
|
||||
},
|
||||
"meta": {
|
||||
"type": "object"
|
||||
},
|
||||
"proxy_protocol_enabled": {
|
||||
"$ref": "../common.json#/properties/proxy_protocol_enabled"
|
||||
},
|
||||
"loadbalancer_address": {
|
||||
"$ref": "../common.json#/properties/loadbalancer_address"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user