aboutsummaryrefslogtreecommitdiff
path: root/acme.toml
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-12-15 14:58:19 +0100
committerDimitri Sokolyuk <demon@dim13.org>2015-12-15 14:58:19 +0100
commit7ca19d9f729b96229ddec049b23adfc28a582aa8 (patch)
tree1f19ba20ce587bc39b6b2c759b73b31cff8b3897 /acme.toml
parentc636683a650a2e2604bbbb6510d044f95285ba69 (diff)
Create keys
Diffstat (limited to 'acme.toml')
-rw-r--r--acme.toml5
1 files changed, 3 insertions, 2 deletions
diff --git a/acme.toml b/acme.toml
index 046ae63..3dbd769 100644
--- a/acme.toml
+++ b/acme.toml
@@ -4,6 +4,7 @@ listen = "localhost:8443"
basedir = ".acme" # usually "/etc/ssl"
provider = "les"
account = "webmaster"
+keysize = 2048
[provider.lev1]
directory = "https://acme-v01.api.letsencrypt.org/directory"
@@ -14,12 +15,12 @@ directory = "https://acme-staging.api.letsencrypt.org/directory"
[account.webmaster]
mail = "webmaster@example.com"
phone = "+12025551212"
-key = "webmaster.key"
+key = "private/webmaster.key"
[account.postmaster]
mail = "postmaster@example.com"
phone = "+12025551212"
-key = "postmaster.key"
+key = "private/postmaster.key"
[hook.nginx]
cmd = "sudo service nginx reload"