1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2025-12-26 00:01:31 +00:00
Files
mailcow-dockerized/data/conf/postfix/config_templates/sni.map.j2

8 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 %}