-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCaddyfile
51 lines (45 loc) · 928 Bytes
/
Caddyfile
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
44
45
46
47
48
49
50
51
# Documentation: https://caddyserver.com/docs/caddyfile/directives
{
http_port 8080
https_port 8443
}
id-broken.localhost {
file_server {
root ./test/websites/id-broken.localhost
}
tls {
load ./test/website-certificates/id-broken.localhost.pem
}
}
id-plus.localhost {
file_server {
root ./test/websites/id-plus.localhost
}
tls {
load ./test/website-certificates/id-plus.localhost.pem
}
}
id-web.localhost {
file_server {
root ./test/websites/id-web.localhost
}
tls {
load ./test/website-certificates/id-web.localhost.pem
}
}
id-did-configuration.localhost {
file_server {
root ./test/websites/id-did-configuration.localhost
}
tls {
load ./test/website-certificates/id-did-configuration.localhost.pem
}
}
no-id.localhost {
file_server {
root ./test/websites/no-id.localhost
}
tls {
load ./test/website-certificates/no-id.localhost.pem
}
}