-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig_panel.toml
47 lines (38 loc) · 1.58 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
version = "1.0"
[main]
name = "Tube configuration"
services = ["__APP__"]
[main.config]
name = "Configuration Options"
[main.config.max_upload_size]
ask = "Max Upload Size"
type = "number"
help = "Set max_upload_size to the maximum number of bytes you wish to impose on uploaded and imported videos. Upload(s)/Import(s) that exceed this size will by denied by the server. This is a saftey measure so as to not DoS the Tube server instance. Set it to a sensible value you see fit."
bind = "max_upload_size:__INSTALL_DIR__/config.json"
[main.rss]
name = "RSS feed information"
[main.rss.feed_title]
ask = "Feed Title"
type = "string"
help = "Set the feed title for your RSS feed"
bind = "title:__INSTALL_DIR__/config.json"
[main.rss.feed_description]
ask = "Feed Description"
type = "string"
help = "Set the feed description for your RSS feed"
bind = "description:__INSTALL_DIR__/config.json"
[main.rss.author_name]
ask = "Author Name"
type = "string"
help = "Set the author name for the RSS feed"
bind = "name:__INSTALL_DIR__/config.json"
[main.rss.author_email]
ask = "Author Email"
type = "string"
help = "Set the author email for the RSS feed"
bind = "email:__INSTALL_DIR__/config.json"
[main.rss.copyright_text]
ask = "Copyright Text"
type = "string"
help = "Set the copyright text for the RSS feed"
bind = "copyright:__INSTALL_DIR__/config.json"