nginx: support certificates for multiple domains
Uses `tls_domains` config context property from NetBox.
This commit is contained in:
parent
554bf1f711
commit
4fba1b2d6d
3
roles/nginx/README.md
Normal file
3
roles/nginx/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
Install nginx, set up generic HTTPS redirects and the .well-known directory.
|
||||
|
||||
Also acquire Let’s Encrypt certificates for domains listed in the `tls_domains` context property (or just for the primary IP `dns_domain` if `tls_domains` is not set).
|
|
@ -26,8 +26,8 @@
|
|||
|
||||
- name: Get LE certificate
|
||||
command:
|
||||
cmd: certbot certonly --non-interactive --agree-tos --register-unsafely-without-email --webroot --webroot-path /srv/http -d {{ dns_name }}
|
||||
creates: '/etc/letsencrypt/renewal/{{ dns_name }}.conf'
|
||||
cmd: certbot certonly --non-interactive --agree-tos --register-unsafely-without-email --webroot --webroot-path /srv/http -d {{ tls_domains|default([dns_name])|join(',') }}
|
||||
creates: '/etc/letsencrypt/renewal/{{ tls_domains|default([dns_name])|first }}.conf'
|
||||
|
||||
- name: Install certificate renewal deployment hook
|
||||
copy:
|
||||
|
|
Loading…
Reference in a new issue