-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcaddy.dev.json
58 lines (58 loc) · 1.78 KB
/
caddy.dev.json
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
52
53
54
55
56
57
58
{
"apps":
{
"http":
{
"servers":
{
"web":
{
"automatic_https":
{
"disable": true
},
"listen":
[
":8080"
],
"routes":
[
{
"handle":
[
{
"handler": "file_server",
"root": "./dist"
}
],
"match":
[
{
"path_regexp":
{
"name": "asset",
"pattern": "\\.(br|css|gz|ico|jpg|js|mp3|mp4|png|svg)$"
}
}
],
"terminal": true
},
{
"handle":
[
{
"handler": "rewrite",
"uri": "/index.html"
},
{
"handler": "file_server",
"root": "./dist"
}
]
}
]
}
}
}
}
}