-
Notifications
You must be signed in to change notification settings - Fork 10
/
config_panel.toml
78 lines (65 loc) · 2.45 KB
/
config_panel.toml
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
73
74
75
76
77
78
version = "1.0"
[main]
name = "Glitchsoc configuration"
services = ["__APP__-web", "__APP__-sidekiq", "__APP__-streaming"]
[main.customization]
name = "Customization"
[main.customization.max_toot_chars]
ask = "Maximum allowed character count in a toot"
type = "number"
example = "500"
bind = ":__INSTALL_DIR__/live/.env.production"
[main.customization.max_pinned_toots]
ask = "Maximum number of pinned posts"
type = "number"
example = "5"
bind = ":__INSTALL_DIR__/live/.env.production"
[main.customization.max_bio_chars]
ask = "Maximum allowed bio characters"
type = "number"
example = "500"
bind = ":__INSTALL_DIR__/live/.env.production"
[main.customization.max_profile_fields]
ask = "Maximim number of profile fields allowed"
type = "number"
example = "4"
bind = ":__INSTALL_DIR__/live/.env.production"
[main.customization.max_display_name_chars]
ask = "Maximum allowed display name characters"
type = "number"
example = "30"
bind = ":__INSTALL_DIR__/live/.env.production"
[main.customization.max_poll_options]
ask = "Maximum allowed poll options"
type = "number"
example = "5"
bind = ":__INSTALL_DIR__/live/.env.production"
[main.customization.max_poll_option_chars]
ask = "Maximum allowed poll option characters"
type = "number"
example = "100"
bind = ":__INSTALL_DIR__/live/.env.production"
[main.customization.max_image_size]
ask = "Maximum image upload size"
help = "in bytes"
type = "number"
example = "8388608"
bind = ":__INSTALL_DIR__/live/.env.production"
[main.customization.max_video_size]
ask = "Maximum video and audio upload sizes"
help = "in bytes"
type = "number"
example = "41943040"
bind = ":__INSTALL_DIR__/live/.env.production"
[main.customization.max_emoji_size]
ask = "Maximum custom emoji file sizes"
help = "in bytes"
type = "number"
example = "51200"
bind = ":__INSTALL_DIR__/live/.env.production"
[main.customization.max_remote_emoji_size]
ask = "Maximum remote custom emoji file sizes"
help = "in bytes"
type = "number"
example = "204800"
bind = ":__INSTALL_DIR__/live/.env.production"