mirror of
https://github.com/YunoHost-Apps/shaarli_ynh.git
synced 2024-09-03 20:26:10 +02:00
60 lines
1.5 KiB
PHP
60 lines
1.5 KiB
PHP
<?php /*
|
|
{
|
|
"resource": {
|
|
"data_dir": "data",
|
|
"config": "data\/config.php",
|
|
"datastore": "data\/datastore.php",
|
|
"ban_file": "data\/ipbans.php",
|
|
"updates": "data\/updates.txt",
|
|
"log": "data\/log.txt",
|
|
"update_check": "data\/lastupdatecheck.txt",
|
|
"raintpl_tpl": "tpl\/",
|
|
"raintpl_tmp": "tmp\/",
|
|
"thumbnails_cache": "cache",
|
|
"page_cache": "pagecache"
|
|
},
|
|
"security": {
|
|
"ban_after": 4,
|
|
"ban_duration": 1800,
|
|
"session_protection_disabled": false,
|
|
"open_shaarli": false
|
|
},
|
|
"general": {
|
|
"header_link": "?",
|
|
"links_per_page": 20,
|
|
"enabled_plugins": [
|
|
"qrcode"
|
|
],
|
|
"timezone": "YNH_TIMEZONE",
|
|
"title": "YNH_TITLE"
|
|
},
|
|
"updates": {
|
|
"check_updates": true,
|
|
"check_updates_branch": "stable",
|
|
"check_updates_interval": 86400
|
|
},
|
|
"feed": {
|
|
"rss_permalinks": true,
|
|
"show_atom": false
|
|
},
|
|
"privacy": {
|
|
"default_private_links": YNH_PRIVATE_LINK_BY_DEFAULT,
|
|
"hide_public_links": false,
|
|
"hide_timestamps": false
|
|
},
|
|
"thumbnail": {
|
|
"enable_thumbnails": true,
|
|
"enable_localcache": true
|
|
},
|
|
"redirector": {
|
|
"url": "",
|
|
"encode_url": true
|
|
},
|
|
"plugins": [],
|
|
"credentials": {
|
|
"login": "YNH_ADMIN",
|
|
"salt": "YNH_SALT",
|
|
"hash": "YNH_HASH"
|
|
}
|
|
}
|
|
*/ ?>
|