This repository has been archived by the owner on Mar 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
config.json
72 lines (72 loc) · 1.76 KB
/
config.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"instructions": "These values can by overriden by the environment, the docker flow uses environment to set most of these",
"pomf": {
"provider": "nodepomf-internal",
"provider_url_instructions": "Make sure the port number matches [web].port",
"provider_url": "http://127.0.0.1:7070/upload"
},
"web": {
"port": 7070,
"listen": "0.0.0.0",
"public_url": "https://localhost",
"mounts": [
{
"destination": "",
"dialect": "../dialects/control/dialect.loki_control"
},
{
"destination": "",
"dialect": "appdotnet_official"
},
{
"destination": "/stream/0",
"dialect": "appdotnet_official"
},
{
"destination": "",
"dialect": "config"
},
{
"destination": "",
"dialect": "../dialects/transport/dialect.loki_proxy"
},
{
"destination": "",
"dialect": "../dialects/token/dialect.loki_tokens"
},
{
"destination": "",
"dialect": "../dialects/moderation/dialect.loki_moderation"
},
{
"destination": "",
"dialect": "../dialects/nodepomf/dialect.loki_nodepomf"
},
{
"destination": "",
"dialect": "../dialects/homepage/dialect.loki_homepage"
}
]
},
"admin": {
"listen": "127.0.0.1",
"port": 3000,
"modKey_instructions": "If modKey is not blank, the admin interface will be enabled",
"modKey": "CHANGE_ME"
},
"database": {
"default": {
"type_instructions": "memory driver will lose data between restarts",
"type": "memory",
"options": {
}
}
},
"limits": {
"default": {
"following": "unlimited",
"max_file_size": 10485759,
"storage": 0
}
}
}