-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathacme.joml
44 lines (38 loc) · 969 Bytes
/
acme.joml
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
32
33
34
35
36
37
38
39
40
41
42
43
acme: {
"theshoemaker.de": {
url: "letsencrypt-staging" # magic
alt_names: ["www.theshoemaker.de"] # empty by default
}
}
services: {
"0.0.0.0:80": {
hosts: {
"theshoemaker.de": {
acme_challenges: "theshoemaker.de"
redirects: {
"/*": "https://theshoemaker.de/$1"
}
}
"www.theshoemaker.de": {
redirects: {
"/*": "http://theshoemaker.de/$1"
}
}
}
}
"0.0.0.0:443": {
tls: {
acme: "theshoemaker.de" # reference to acme object
}
hosts: {
"theshoemaker.de": {
files: "." # everything is missing here
}
"www.theshoemaker.de": {
redirects: {
"/*": "https://theshoemaker.de/$1"
}
}
}
}
}