我需要在NGINX入口控制器中将ssl_prefer_server_ciphers
设置为on
。
不幸的是,我无法在其配置中找到如何做到这一点https://kubernetes.github.io/ingress-nginx/user-guide/nginx-configuration/configmap/
NGINX入口控制器中ssl_prefer_server_ciphers
的默认值是多少?
(NGINX中的默认值为off
(
是否在NGINX入口控制器中将值设置为on
?
根据https://kubernetes.github.io/ingress-nginx/user-guide/nginx-configuration/configmap/
In order to overwrite nginx-controller configuration values as seen in config.go, you can add key-value pairs to the data section of the config-map.
因此,配置为
data:
ssl_prefer_server_ciphers: "on"