2022-04-14 21:41:04 +02:00
|
|
|
#!/bin/bash
|
|
|
|
# {{ansible_managed}}
|
|
|
|
{% for proxysite in proxy %}
|
2022-04-14 22:18:21 +02:00
|
|
|
certbot renew --nginx --cert-name {{ proxysite.domain }}
|
2022-04-14 21:41:04 +02:00
|
|
|
{% endfor %}
|
|
|
|
{% for staticsite in static %}
|
2022-04-14 22:18:21 +02:00
|
|
|
certbot renew --nginx --cert-name {{ staticsite.domain }}
|
2022-04-14 21:41:04 +02:00
|
|
|
{% endfor %}
|