initial commit with empty 8192 bit key
This commit is contained in:
commit
692852c125
6 changed files with 50 additions and 0 deletions
19
tasks/main.yml
Normal file
19
tasks/main.yml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
- name: copy dh param
|
||||
copy:
|
||||
src: "dh-{{ item }}.pem"
|
||||
dest: "/etc/ssl/dh-{{ item }}.pem"
|
||||
with_items:
|
||||
- 1024
|
||||
- 2048
|
||||
- 4096
|
||||
- 8192
|
||||
|
||||
- name: create link to default dh param
|
||||
file:
|
||||
src: /etc/ssl/dh-4096.pem
|
||||
dest: /etc/ssl/dhparams.pem
|
||||
owner: root
|
||||
group: root
|
||||
state: link
|
||||
mode: 0644
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue