Compare commits

...

4 Commits

Author SHA1 Message Date
Alex Kotov 3b171bd59d
Add more platforms 2023-08-12 20:33:58 +04:00
Alex Kotov 34c5cdb0c9
Improve config 2023-08-12 20:33:16 +04:00
Alex Kotov dbadef7fe1
Add more platforms 2023-03-28 12:34:34 +04:00
Alex Kotov cf2415feb8
Fix typo 2021-09-20 09:44:23 +05:00
3 changed files with 9 additions and 2 deletions

View File

@ -21,8 +21,11 @@ galaxy_info:
versions:
- stretch # Debian 9 Stretch
- buster # Debian 10 Buster
- bullseye # Debian 11 Bullseye
- bookworm # Debian 12 Bookworm
- name: Ubuntu
versions:
- xenial # Ubuntu 16.04 LTS Xenial Xerus
- bionic # Ubuntu 18.04 LTS Bionic Beaver
- focal # Ubuntu 20.04 LTS Focal Fossa
- jammy # Ubuntu 22.04 LTS Jammy Jellyfish

View File

@ -24,7 +24,7 @@
- name: Install Let's Encrypt config
template:
src: templates/certbot/cli.ini
src: templates/cli.ini
dest: '{{ certbot__conf_cli }}'
mode: 'u=rw,go=r'
owner: root
@ -32,7 +32,7 @@
- name: Install Nginx SSL options
template:
src: templates/certbot/options-ssl-nginx.conf
src: templates/options-ssl-nginx.conf
dest: '{{ certbot__conf_nginx }}'
mode: 'u=rw,go=r'
owner: root

View File

@ -3,6 +3,8 @@ agree-tos = true
cert-name = {{ certbot__cert_name }}
domains = {{ certbot__cert_domains | join(',') }}
email = {{ certbot__email }}
# Because we are using logrotate for greater flexibility, disable the
# internal certbot logrotation.
max-log-backups = 0
no-eff-email = true
non-interactive = true
@ -12,6 +14,8 @@ post-hook = {{ certbot__post_hook }}
{% if certbot__pre_hook %}
pre-hook = {{ certbot__pre_hook }}
{% endif %}
# Adjust interactive output regarding automated renewal
preconfigured-renewal = true
redirect = true
rsa-key-size = 4096
standalone = true