send updates on changes

This commit is contained in:
pascal
2026-02-09 17:06:04 +01:00
parent 73aa0785ba
commit 9a67a8e427
10 changed files with 214 additions and 62 deletions

View File

@@ -2972,7 +2972,6 @@ components:
- target_id
- target_type
- protocol
- host
- port
- enabled
ReverseProxyAuthConfig:

View File

@@ -2084,12 +2084,12 @@ type ReverseProxyTarget struct {
Enabled bool `json:"enabled"`
// Host Backend ip or domain for this target
Host string `json:"host"`
Host *string `json:"host,omitempty"`
// Path URL path prefix for this target
Path *string `json:"path,omitempty"`
// Port Backend port for this target
// Port Backend port for this target. Use 0 or omit to use the scheme default (80 for http, 443 for https).
Port int `json:"port"`
// Protocol Protocol to use when connecting to the backend