-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathacme.toml
More file actions
31 lines (29 loc) · 868 Bytes
/
acme.toml
File metadata and controls
31 lines (29 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[storage]
path = "./accounts"
[net]
bind = "0.0.0.0:443"
# To use the Let's Encrypt ACME TLS provider you must:
#
# 1. Change the domain name and email address
# 2. Ensure the DNS points to a public IP address
# 3. Ensure the `production` flag is set to `true`
#
# If the production flag is not set then you will get
# an error attempting to connect to the server as a
# staging certificate will have been issued.
#
# Once the certificate has been issued you should see
# output like this:
#
# INFO sos_server::server: acme result=AccountCacheStore
# INFO sos_server::server: acme result=DeployedNewCert
# INFO sos_server::server: acme result=CertCacheStore
#
# You can then check the connection, eg:
#
# curl -vL https://acme.example.com
[net.ssl.acme]
cache = "sandbox/acme-cache"
domains = ["acme.example.com"]
email = ["acme@example.com"]
production = false