我需要在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的值很热吗?
发布于 2019-11-05 15:13:42
根据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"https://stackoverflow.com/questions/58705693
复制相似问题