summaryrefslogtreecommitdiffstats
path: root/roles/letsencrypt/templates/etc/letsencrypt-tiny/letsencrypt-certs.conf.j2
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2016-06-15 18:00:57 +0200
committerGuilhem Moulin <guilhem@fripost.org>2016-06-15 18:00:57 +0200
commit97e78349145156ca6565ee5b2af54983a6fdd3a6 (patch)
treeb5eb26c93c323425d8a8a008ef1f7750f61e1ded /roles/letsencrypt/templates/etc/letsencrypt-tiny/letsencrypt-certs.conf.j2
parentbf6d69d38578245302525395f5f53ac40f441f0c (diff)
Rename letsencrypt-tiny to lacme.
Diffstat (limited to 'roles/letsencrypt/templates/etc/letsencrypt-tiny/letsencrypt-certs.conf.j2')
-rw-r--r--roles/letsencrypt/templates/etc/letsencrypt-tiny/letsencrypt-certs.conf.j263
1 files changed, 0 insertions, 63 deletions
diff --git a/roles/letsencrypt/templates/etc/letsencrypt-tiny/letsencrypt-certs.conf.j2 b/roles/letsencrypt/templates/etc/letsencrypt-tiny/letsencrypt-certs.conf.j2
deleted file mode 100644
index ca3415a..0000000
--- a/roles/letsencrypt/templates/etc/letsencrypt-tiny/letsencrypt-certs.conf.j2
+++ /dev/null
@@ -1,63 +0,0 @@
-hash = sha512
-keyusage = digitalSignature, keyEncipherment
-
-{% if 'IMAP' in group_names %}
-[imap]
-certificate-key = /etc/dovecot/ssl/imap.fripost.org.key
-certificate-chain = /etc/dovecot/ssl/imap.fripost.org.pem
-subject = /O=Fripost/CN=imap.fripost.org
-subjectAltName = DNS:imap.fripost.org,DNS:sieve.fripost.org
-notify = /bin/systemctl restart dovecot
-{% endif %}
-
-{% if 'MSA' in group_names %}
-[smtp]
-certificate-key = /etc/postfix/ssl/smtp.fripost.org.key
-certificate-chain = /etc/postfix/ssl/smtp.fripost.org.pem
-subject = /O=Fripost/CN=smtp.fripost.org
-notify = /bin/systemctl reload postfix
-{% endif %}
-
-{% if 'MX' in group_names %}
-[mx]
-certificate-key = /etc/postfix/ssl/mx.fripost.org.key
-certificate-chain = /etc/postfix/ssl/mx.fripost.org.pem
-subject = /O=Fripost/CN=mx{{ mxno }}.fripost.org
-notify = /bin/systemctl reload postfix
-{% endif %}
-
-{% if 'lists' in group_names %}
-[lists]
-certificate-key = /etc/nginx/ssl/lists.fripost.org.key
-certificate-chain = /etc/nginx/ssl/lists.fripost.org.pem
-subject = /O=Fripost/CN=lists.fripost.org
-notify = /bin/systemctl reload nginx
-{% endif %}
-
-{% if 'wiki' in group_names %}
-[www]
-certificate-key = /etc/nginx/ssl/www.fripost.org.key
-certificate-chain = /etc/nginx/ssl/www.fripost.org.pem
-subject = /O=Fripost/CN=fripost.org
-subjectAltName = DNS:fripost.org,DNS:www.fripost.org,DNS:wiki.fripost.org
-notify = /bin/systemctl reload nginx
-{% endif %}
-
-{% if 'webmail' in group_names %}
-[webmail]
-certificate-key = /etc/nginx/ssl/mail.fripost.org.key
-certificate-chain = /etc/nginx/ssl/mail.fripost.org.pem
-subject = /O=Fripost/CN=mail.fripost.org
-subjectAltName = DNS:mail.fripost.org,DNS:webmail.fripost.org
-notify = /bin/systemctl reload nginx
-{% endif %}
-
-{% if 'git' in group_names %}
-[git]
-certificate-key = /etc/nginx/ssl/git.fripost.org.key
-certificate-chain = /etc/nginx/ssl/git.fripost.org.pem
-subject = /O=Fripost/CN=git.fripost.org
-notify = /bin/systemctl reload nginx
-{% endif %}
-
-; vim:ft=dosini