32 lines
885 B
Plaintext
32 lines
885 B
Plaintext
#
|
|
# $OpenBSD: acme-client.conf,v 1.4 2020/09/17 09:13:06 florian Exp $
|
|
#
|
|
authority letsencrypt {
|
|
api url "https://acme-v02.api.letsencrypt.org/directory"
|
|
account key "/etc/acme/letsencrypt-privkey.pem"
|
|
}
|
|
|
|
authority letsencrypt-staging {
|
|
api url "https://acme-staging-v02.api.letsencrypt.org/directory"
|
|
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"
|
|
domain full chain certificate "/etc/ssl/example.com.fullchain.pem"
|
|
sign with letsencrypt
|
|
}
|