mirror of
https://github.com/geerlingguy/ansible-role-certbot.git
synced 2025-04-19 17:01:37 +02:00
Fix stop_services; fix ssl_protocols
certbot_create_standalone_stop_services is ok for this test case, but for use as a complete example should stop nginx service. Also TLSv1.1 is not safety, better to use TLSv1.2 and TLSv1.3.
This commit is contained in:
parent
c6297ddebb
commit
d0d785ac28
@ -89,7 +89,8 @@
|
||||
vars:
|
||||
certbot_admin_email: https@servercheck.in
|
||||
certbot_create_if_missing: true
|
||||
certbot_create_standalone_stop_services: []
|
||||
certbot_create_standalone_stop_services:
|
||||
- nginx
|
||||
certbot_certs:
|
||||
- domains:
|
||||
- certbot-test.servercheck.in
|
||||
@ -104,7 +105,7 @@
|
||||
extra_parameters: |
|
||||
ssl_certificate /etc/letsencrypt/live/certbot-test.servercheck.in/fullchain.pem;
|
||||
ssl_certificate_key /etc/letsencrypt/live/certbot-test.servercheck.in/privkey.pem;
|
||||
ssl_protocols TLSv1.1 TLSv1.2;
|
||||
ssl_protocols TLSv1.2 TLSv1.3;
|
||||
ssl_ciphers HIGH:!aNULL:!MD5;
|
||||
|
||||
pre_tasks:
|
||||
|
Loading…
x
Reference in New Issue
Block a user