aboutsummaryrefslogtreecommitdiff
path: root/acme.toml
blob: eb801ce3ed96f863e05cfc16d8b4b258a399292d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[[account]]
mail = "another@example.com"
key = "/etc/acme.key"
provider = "https://acme-staging.api.letsencrypt.org/directory"

[[account.want]]
domains = [ "www.example.com", "example.com" ]
cert = "/etc/certs/www_example_com.pem"
key = "/etc/private/www_example_com.key"
# webroot = /var/www/htdocs

[[account.want]]
domains = [ "www.example.net", "example.net" ]
cert = "/etc/certs/www_example_net.pem"
key = "/etc/private/www_example_net.key"

[[account.hook]]
cmd = "sudo service nginx reload"