configJson.json.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?php /*
  2. {
  3. "credentials": {
  4. "login": "root",
  5. "hash": "hash",
  6. "salt": "salt"
  7. },
  8. "security": {
  9. "session_protection_disabled": false,
  10. "ban_after": 4,
  11. "ban_duration": 1800,
  12. "open_shaarli": false,
  13. "allowed_protocols": [
  14. "ftp",
  15. "ftps",
  16. "magnet"
  17. ]
  18. },
  19. "general": {
  20. "timezone": "Europe\/Paris",
  21. "title": "Shaarli",
  22. "header_link": "?",
  23. "links_per_page": 20,
  24. "enabled_plugins": [
  25. "qrcode"
  26. ],
  27. "default_note_title": "Note: "
  28. },
  29. "privacy": {
  30. "default_private_links": true,
  31. "hide_public_links": false,
  32. "force_login": false,
  33. "hide_timestamps": false,
  34. "remember_user_default": true
  35. },
  36. "redirector": {
  37. "url": "lala",
  38. "encode_url": true
  39. },
  40. "config": {
  41. "foo": "bar"
  42. },
  43. "resource": {
  44. "datastore": "tests\/utils\/config\/datastore.php",
  45. "data_dir": "sandbox\/",
  46. "raintpl_tpl": "tpl\/",
  47. "config": "data\/config.php",
  48. "ban_file": "data\/ipbans.php",
  49. "updates": "data\/updates.txt",
  50. "log": "data\/log.txt",
  51. "update_check": "data\/lastupdatecheck.txt",
  52. "history": "data\/history.php",
  53. "theme": "default",
  54. "raintpl_tmp": "tmp\/",
  55. "thumbnails_cache": "cache",
  56. "page_cache": "pagecache"
  57. },
  58. "plugins": {
  59. "WALLABAG_VERSION": 1
  60. },
  61. "dev": {
  62. "debug": true
  63. },
  64. "updates": {
  65. "check_updates": false,
  66. "check_updates_branch": "stable",
  67. "check_updates_interval": 86400
  68. },
  69. "feed": {
  70. "rss_permalinks": true,
  71. "show_atom": true
  72. },
  73. "translation": {
  74. "language": "auto",
  75. "mode": "php",
  76. "extensions": []
  77. },
  78. "thumbnails": {
  79. "enabled": true,
  80. "width": 90,
  81. "height": 53
  82. }
  83. }
  84. */ ?>