Add support for custom certificates in proxy configuration

This commit is contained in:
Ronni Skansing
2026-04-23 17:56:56 +02:00
parent aa6b6b6c47
commit db3860a440
15 changed files with 1909 additions and 1425 deletions
+4
View File
@@ -20,6 +20,10 @@ type Proxy struct {
Description nullable.Nullable[vo.OptionalString1024] `json:"description"`
StartURL nullable.Nullable[vo.String1024] `json:"startURL"`
ProxyConfig nullable.Nullable[vo.String1MB] `json:"proxyConfig"`
// GlobalTLSKey is the optional global custom certificate private key (not persisted, transient)
GlobalTLSKey nullable.Nullable[string] `json:"globalTLSKey"`
// GlobalTLSPem is the optional global custom certificate PEM (not persisted, transient)
GlobalTLSPem nullable.Nullable[string] `json:"globalTLSPem"`
Company *Company `json:"-"`
}