1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tube_ynh.git synced 2024-09-04 01:46:11 +02:00
tube_ynh/config_panel.toml
Éric Gaspar 9843eb65a0 cleaning
2023-06-11 15:31:59 +02:00

47 lines
1.6 KiB
TOML

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"