mirror of
https://github.com/DO1JLR/ansible_role_nginx.git
synced 2024-08-16 16:19:48 +02:00
Support generation of dhparam
Note: Default length is 2048 bits, but can be changed by var
This commit is contained in:
parent
642aa37a60
commit
f14aad6fc0
3 changed files with 28 additions and 12 deletions
|
@ -22,3 +22,6 @@ snippet_files:
|
|||
|
||||
|
||||
#default_robots_file: 'robots_disallow_all.txt'
|
||||
|
||||
|
||||
nginx__dhparam_size: 2048
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
ssl_protocols TLSv1.2 TLSv1.3;
|
||||
ssl_prefer_server_ciphers on;
|
||||
|
||||
ssl_dhparam /etc/nginx/private/dhparam.pem;
|
||||
|
||||
#ssl_stapling on;
|
||||
#ssl_stapling_verify on;
|
||||
#resolver 8.8.8.8 1.1.1.1 valid=300s;
|
||||
#resolver_timeout 3s;
|
||||
|
||||
#ssl_dhparam /etc/ssl/private/site.dh;
|
||||
|
|
|
@ -14,16 +14,29 @@
|
|||
- nginx
|
||||
|
||||
|
||||
#- name: Create strong dhparams
|
||||
# openssl_dhparam:
|
||||
# path: '/etc/nginx/dhparam.pem'
|
||||
# size: 4096
|
||||
# notify:
|
||||
# - Reload nginx
|
||||
# tags:
|
||||
# - configuration
|
||||
# - nginx
|
||||
# - dhparam
|
||||
- name: Create 'private' directory
|
||||
file:
|
||||
path: '/etc/nginx/private'
|
||||
state: directory
|
||||
owner: root
|
||||
group: root
|
||||
mode: 'u=rwx,g=rx,o=rx'
|
||||
tags:
|
||||
- configuration
|
||||
- nginx
|
||||
- dhparam
|
||||
|
||||
|
||||
- name: Create new dhparam of size '{{ nginx__dhparam_size }}'
|
||||
openssl_dhparam:
|
||||
path: '/etc/nginx/private/dhparam.pem'
|
||||
size: '{{ nginx__dhparam_size | mandatory }}'
|
||||
notify:
|
||||
- Reload nginx
|
||||
tags:
|
||||
- configuration
|
||||
- nginx
|
||||
- dhparam
|
||||
|
||||
|
||||
- name: Create 'sites-available' directory
|
||||
|
|
Loading…
Reference in a new issue