我需要在NGINX Ingress Controller中将ssl_prefer_server_ciphers
设置为on
。
不幸的是,我无法找到如何在其配置中进行操作 https://kubernetes.github.io/ingress-nginx/user-guide/nginx-configuration/configmap/
NGINX Ingress Controller中ssl_prefer_server_ciphers
的默认值是什么?
(NGINX中的默认值为off
)
是否可以在NGINX Ingress Controller中将值设置为on
?
答案 0 :(得分:1)
根据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"