1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/bookstack_ynh.git synced 2024-09-03 18:16:02 +02:00
bookstack_ynh/config_panel.toml

42 lines
1.7 KiB
TOML
Raw Normal View History

version = "1.0"
[main]
name = "BookStack configuration"
2023-06-07 11:33:52 +02:00
services = ["__APP__"]
[main.auth_config]
name = "Authentication configuration"
[main.auth_config.auth_method]
ask = "General authentication"
choices = ["standard", "ldap"]
default = "ldap"
help = "Select an authentication method to connect to BookStack."
Testing (#116) * 22.06 * Auto-update README * Update manifest.json * Fix * 22.06.1 * Auto-update README * Update upgrade * 22.06.2 * Auto-update README * Update app.src * Update DESCRIPTION.md * Auto-update README * Update nginx.conf * Update .env.example.complete * Update .env.example.complete * Update install * Revert "Update install" This reverts commit e43db7a0deb773ce8e4514887383b7528cc63808. * 22.07.1 (#80) * 22.07.1 * Auto-update README Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Auto-update README * Auto-update README * 22.07.2 (#82) * 22.07.2 * Auto-update README Co-authored-by: yunohost-bot <yunohost@yunohost.org> * 22.07.3 (#84) * 22.07.3 * Auto-update README * Update manifest.json Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Update upgrade * 22.09 (#88) * 22.09 * Auto-update README * Update app.src Co-authored-by: yunohost-bot <yunohost@yunohost.org> * 22.09.1 * Auto-update README * upgrade composer * upgrade config (#91) * Update manifest.json * Auto-update README * Update upgrade * 22.10 * Auto-update README * 22.10.1 * 22.11 * Auto-update README * 22.11.1 * Auto-update README * Upgrade to version 22.11.1 (#100) * Upgrade to v22.11.1 * Auto-update README Co-authored-by: yunohost-bot <yunohost-bot@users.noreply.github.com> Co-authored-by: yunohost-bot <yunohost@yunohost.org> Co-authored-by: Éric Gaspar <46165813+ericgaspar@users.noreply.github.com> * Fis php (#102) * Update upgrade * reorder script * Update manifest.json * Auto-update README * Update restore * Fix size * Auto-update README * Update DESCRIPTION_fr.md * Auto-update README * Fix * 23.01 * Auto-update README * PHP8.1 * 23.01.1 * Auto-update README * Upgrade auto-updater (#108) * [autopatch] Upgrade auto-updater * Auto-update README --------- Co-authored-by: tituspijean <titus@pijean.ovh> * V2 (#107) * Auto-update README * v2 * Fix * Update manifest.toml * Update manifest.toml * Fix * Create post_install.md * Fix * Auto-update README * Update install * Update config_panel.toml * Update manifest.toml * Update _common.sh * Update tests.toml * Add post * Update manifest.toml * Update remove * Update install * Update _common.sh * Fix * Update change_url * Update upgrade * Auto-update README * cleaning * remove PHP version * Update _common.sh * Update manifest.toml * Fix * fix * Update manifest.toml * Update manifest.toml * Update upgrade * Update manifest.toml * 23.02 * Auto-update README * Update change_url * Update change_url * Update upgrade --------- Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Fix * Auto-update README * Update manifest.toml * fix * Update manifest.toml * Update manifest.toml * Auto-update README * new autoupdate * cleaning * Update manifest.toml * Update manifest.toml * Auto-update README * cleaning * Upgrade to v23.2.3 (#113) * Upgrade to v23.2.3 * Auto-update README * Update config_panel.toml * Update manifest.toml * Auto-update README --------- Co-authored-by: yunohost-bot <yunohost@yunohost.org> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: yunohost-bot <yunohost-bot@users.noreply.github.com> Co-authored-by: tituspijean <titus@pijean.ovh>
2023-05-03 16:08:54 +02:00
bind = "AUTH_METHOD:/var/www/__APP__/.env"
[main.php_fpm_config]
name = "PHP-FPM configuration"
[main.php_fpm_config.fpm_footprint]
ask = "Memory footprint"
type = "select"
choices.low = "Low, <= 20Mb per pool"
choices.medium = "Medium, between 20Mb and 40Mb per pool"
choices.high = "High, > 40Mb per pool"
choices.specific = "Use specific value"
default = "low"
[main.php_fpm_config.fpm_free_footprint]
visible = "fpm_footprint == 'specific'"
ask = "Memory footprint of the service?"
type = "number"
default = "0"
help = "Free field to specify exactly the footprint in Mb if you don't want to use one of the three previous values."
[main.php_fpm_config.fpm_usage]
ask = "Expected usage"
type = "select"
choices = ["low", "medium", "high"]
default = "low"
help = "low: Personal usage, behind the SSO. No RAM footprint when not used, but the impact on the processor can be high if many users are using the service.<br>medium: Low usage, few people or/and publicly accessible. Low RAM footprint, medium processor footprint when used.<br>high: High usage, frequently visited website. High RAM footprint, but lower on processor usage and quickly responding."