Skip to content
Snippets Groups Projects
Commit 00251859 authored by jurgenhaas's avatar jurgenhaas
Browse files

Further improve letsencrypt to run without stopping apache server while it's running

parent ff72eb34
No related branches found
No related tags found
No related merge requests found
......@@ -18,9 +18,15 @@
jump: 'ACCEPT'
state: 'present'
- name: "Install New Cert"
- name: "Install New Cert via webroot"
shell: certbot certonly --expand --non-interactive --config /etc/letsencrypt/{{ cert.domain }}.ini --cert-name {{ cert.domain }} --webroot-path /var/www/html --webroot
ignore_errors: true
when: groups.proxyserver is not defined or inventory_hostname not in groups.proxyserver
- name: "Install New Cert via HaProxy"
shell: certbot certonly --expand --non-interactive --config /etc/letsencrypt/{{ cert.domain }}.ini --http-01-port {{ port }} --preferred-challenges http-01 --cert-name {{ cert.domain }}
ignore_errors: true
when: groups.proxyserver is defined and inventory_hostname in groups.proxyserver
- name: "Close Port"
iptables:
......
......@@ -18,12 +18,19 @@
jump: 'ACCEPT'
state: 'present'
- name: "Renew Existing Certs"
#shell: certbot renew --non-interactive --http-01-port {{ port }} --preferred-challenges http-01
- name: "Renew Existing Certs via webroot"
shell: certbot renew --non-interactive --webroot-path /var/www/html --webroot
ignore_errors: true
register: renew_result
changed_when: "'No renewals were attempted.' not in renew_result.stdout"
when: groups.proxyserver is not defined or inventory_hostname not in groups.proxyserver
- name: "Renew Existing Certs via HaProxy"
shell: certbot renew --non-interactive --http-01-port {{ port }} --preferred-challenges http-01
ignore_errors: true
register: renew_result
changed_when: "'No renewals were attempted.' not in renew_result.stdout"
when: groups.proxyserver is defined and inventory_hostname in groups.proxyserver
- name: "Close Port"
iptables:
......
......@@ -2,7 +2,9 @@ email = {{ apache_server_admin|default('admin@paragon-es.de') }}
domains = {{ cert.domain }}{% for alias in cert.aliases|default([]) %}, {{ alias }}{% endfor %}{% for trusted_domain in cert.trusted_domains|default([]) %}, {{ trusted_domain }}{% endfor %}
text = True
{% if groups.proxyserver is defined and inventory_hostname in groups.proxyserver %}
authenticator = standalone
{% endif %}
# standalone-supported-challenges = tls-sni-01
agree-tos = True
expand = True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment