fix json tag for SSLPreferServerCiphers

related https://github.com/kubernetes/ingress-nginx/pull/5534
This commit is contained in:
Mitsuo Heijo 2020-07-06 23:18:42 +09:00
parent 384ee89e40
commit 8557677a5e

View file

@ -202,7 +202,7 @@ type Server struct {
SSLCiphers string `json:"sslCiphers,omitempty"`
// SSLPreferServerCiphers indicates that server ciphers should be preferred
// over client ciphers when using the SSLv3 and TLS protocols.
SSLPreferServerCiphers string `sslPreferServerCiphers,omitempty`
SSLPreferServerCiphers string `json:"sslPreferServerCiphers,omitempty"`
// AuthTLSError contains the reason why the access to a server should be denied
AuthTLSError string `json:"authTLSError,omitempty"`
}