You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
1.4 KiB

  1. # ---------------------------------
  2. # DO NOT EDIT THIS FILE!
  3. # This is reserved for system use!
  4. # ---------------------------------
  5. name: Wiki.js
  6. defaults:
  7. config:
  8. title: Wiki
  9. host: http://localhost
  10. port: 80
  11. paths:
  12. repo: ./repo
  13. data: ./data
  14. uploads:
  15. maxImageFileSize: 3,
  16. maxOtherFileSize: 100
  17. lang: en
  18. public: false
  19. auth:
  20. defaultReadAccess: false
  21. local:
  22. enabled: true
  23. microsoft:
  24. enabled: false
  25. google:
  26. enabled: false
  27. facebook:
  28. enabled: false
  29. github:
  30. enabled: false
  31. slack:
  32. enabled: false
  33. ldap:
  34. enabled: false
  35. azure:
  36. enabled: false
  37. db: mongodb://localhost/wiki
  38. sessionSecret: null
  39. admin: null
  40. git:
  41. url: null
  42. branch: master
  43. auth:
  44. type: basic
  45. username: null
  46. password: null
  47. privateKey: null
  48. sslVerify: true
  49. serverEmail: wiki@example.com
  50. showUserEmail: true
  51. features:
  52. mathjax: true
  53. externalLogging:
  54. bugsnap: false
  55. loggly: false
  56. papertrail: false
  57. rollbar: false
  58. sentry: false
  59. langs:
  60. -
  61. id: en
  62. name: English
  63. -
  64. id: zh
  65. name: Chinese - 中文
  66. -
  67. id: fr
  68. name: French - Français
  69. -
  70. id: ko
  71. name: Korean - 한국어
  72. -
  73. id: ru
  74. name: Russian - Русский
  75. -
  76. id: es
  77. name: Spanish - Español
  78. # ---------------------------------