Merge pull request #5264 from AndiDog/patch-1
Fix reference to DH param secret, recommend larger parameter size
This commit is contained in:
commit
78bd7d1642
1 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@ $ kubectl create -f configmap.yaml
|
|||
## Custom DH parameters secret
|
||||
|
||||
```console
|
||||
$> openssl dhparam 1024 2> /dev/null | base64
|
||||
$> openssl dhparam 4096 2> /dev/null | base64
|
||||
LS0tLS1CRUdJTiBESCBQQVJBTUVURVJ...
|
||||
```
|
||||
|
||||
|
@ -38,7 +38,7 @@ data:
|
|||
dhparam.pem: "LS0tLS1CRUdJTiBESCBQQVJBTUVURVJ..."
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: nginx-configuration
|
||||
name: lb-dhparam
|
||||
namespace: ingress-nginx
|
||||
labels:
|
||||
app.kubernetes.io/name: ingress-nginx
|
||||
|
|
Loading…
Reference in a new issue