-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.json
45 lines (41 loc) · 1.14 KB
/
conf.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
{
"application": {
"version": "0.0.1",
"port": 3000
},
"mongo": {
"connection": "mongodb://localhost/guacamole"
},
"documents": {
"dirs": {
"tmp": "documents/tmp",
"files": "documents/files",
"thumbs": "documents/thumbs"
},
"blackhole": "/",
"filters": {
"resource.mime": "exact",
"title": "like",
"resource.size": "exact",
"resource.name": "like"
},
"index": ["title", "description", "tags"]
},
"thumbnails": {
"options": {
"width": 64,
"height": 64,
"format": "png"
},
"thumbables": ["image/jpeg", "image/png", "application/pdf"],
"default": {
"*": "filetype_unknown.png",
"video/x-msvideo": "typefile_wmv.png",
"application/x-bzip2": "typefile_zip.png",
"application/zip": "typefile_zip.png",
"application/pdf": "typefile_pdf.png",
"application/javascript": "typefile_js.png"
},
"default-path": "public/images/"
}
}