mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2026-07-21 09:10:15 +00:00
7 lines
234 B
Django/Jinja
7 lines
234 B
Django/Jinja
{% if not SKIP_LETS_ENCRYPT|lower in ['y', 'yes'] %}
|
|
{% for cert_dir, domains in VALID_CERT_DIRS.items() %}
|
|
{% for domain in domains %}
|
|
{{ domain }} {{ cert_dir }}/key.pem {{ cert_dir }}/cert.pem
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endif %}
|