summaryrefslogtreecommitdiff
path: root/etc/examples
diff options
context:
space:
mode:
authorFlorian Obser <florian@cvs.openbsd.org>2020-09-14 16:00:18 +0000
committerFlorian Obser <florian@cvs.openbsd.org>2020-09-14 16:00:18 +0000
commit80df7e3b2adefb2db5ea6317b9a03ef61551ab52 (patch)
tree796ba72d3ad7af534174bc78e4afbdf470cd6458 /etc/examples
parent4d894f7a4047e0aa82059f8199be53fd0ecbbf98 (diff)
We need to be able to provide contact information to use the
buypass.com acme api. From Bartosz Kuzma (bartosz.kuzma AT release11.com), thanks! OK beck, deraadt
Diffstat (limited to 'etc/examples')
-rw-r--r--etc/examples/acme-client.conf14
1 files changed, 13 insertions, 1 deletions
diff --git a/etc/examples/acme-client.conf b/etc/examples/acme-client.conf
index 32ecd8e8655..4341cb918d4 100644
--- a/etc/examples/acme-client.conf
+++ b/etc/examples/acme-client.conf
@@ -1,5 +1,5 @@
#
-# $OpenBSD: acme-client.conf,v 1.2 2019/06/07 08:08:30 florian Exp $
+# $OpenBSD: acme-client.conf,v 1.3 2020/09/14 16:00:17 florian Exp $
#
authority letsencrypt {
api url "https://acme-v02.api.letsencrypt.org/directory"
@@ -11,6 +11,18 @@ authority letsencrypt-staging {
account key "/etc/acme/letsencrypt-staging-privkey.pem"
}
+authority buypass {
+ api url "https://api.buypass.com/acme/directory"
+ account key "/etc/acme/buypass-privkey.pem"
+ contact "mailto:me@example.com"
+}
+
+authority buypass-test {
+ api url "https://api.test4.buypass.no/acme/directory"
+ account key "/etc/acme/buypass-test-privkey.pem"
+ contact "mailto:me@example.com"
+}
+
domain example.com {
alternative names { secure.example.com }
domain key "/etc/ssl/private/example.com.key"