如何在NGINX Ingress Controller中配置ssl_prefer_server_ciphers?

我需要在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

zhang20045237 回答:如何在NGINX Ingress Controller中配置ssl_prefer_server_ciphers?

根据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://www.f2er.com/3161827.html

大家都在问