-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.ron
More file actions
36 lines (36 loc) · 721 Bytes
/
settings.ron
File metadata and controls
36 lines (36 loc) · 721 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
32
33
34
35
36
(
address: "localhost",
port : 8080,
paths : {
"localhost" : (
path : "tmp",
allow : [
"html",
"css",
"js",
"jpg",
"png",
"svg"
]
),
"subdomain.localhost" : (
path : "subdomain",
allow : [
"html"
]
),
"doc.localhost" : (
path : "doc",
allow : [
"html",
"css",
"js",
"jpg",
"png",
"txt",
"woff",
"svg"
]
),
}
)