aboutsummaryrefslogtreecommitdiff
path: root/acme.toml
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-12-14 19:15:18 +0100
committerDimitri Sokolyuk <demon@dim13.org>2015-12-14 19:15:18 +0100
commitdb9e921e40b105369785c2fbde096c676375d3ba (patch)
treebbc43361a8cda31f33a823e46b862d39499782c5 /acme.toml
parentcd20da69000a1b1a74a3814546c2bb204c4c0aa4 (diff)
Update config
Diffstat (limited to 'acme.toml')
-rw-r--r--acme.toml13
1 files changed, 9 insertions, 4 deletions
diff --git a/acme.toml b/acme.toml
index 4bb71e7..33dfe79 100644
--- a/acme.toml
+++ b/acme.toml
@@ -9,12 +9,17 @@ directory = "https://acme-v01.api.letsencrypt.org/directory"
directory = "https://acme-staging.api.letsencrypt.org/directory"
default = true
-[account.example]
-mail = "another@example.com"
+[account.webmaster]
+mail = "webmaster@example.com"
phone = "+12025551212"
key = "/etc/acme.key"
default = true
+[account.postmaster]
+mail = "postmaster@example.com"
+phone = "+12025551212"
+key = "/etc/acme.key"
+
[hook.nginx]
cmd = "sudo service nginx reload"
@@ -26,7 +31,7 @@ cmd = "sudo service smtpd reload"
[desire.web]
provider = "les"
-account = "example"
+account = "another"
altnames = [ "www.example.com", "example.com" ]
key = "/etc/ssl/private/www_example_com.key"
cert = "/etc/ssl/certs/www_example_com.pem"
@@ -35,7 +40,7 @@ hooks = [ "nginx" ]
[desire.mail]
provider = "les"
-account = "example"
+account = "postmaster"
altnames = [ "mail.example.com" ]
key = "/etc/ssl/private/mail_example_com.key"
cert = "/etc/ssl/certs/mail_example_com.pem"