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:
Alexander Chumakov 2022-06-10 10:12:15 +03:00 committed by GitHub
parent c6297ddebb
commit d0d785ac28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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: