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.

112 lines
1.9 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. linebreaks: true
  53. mathjax: true
  54. externalLogging:
  55. bugsnap: false
  56. loggly: false
  57. papertrail: false
  58. rollbar: false
  59. sentry: false
  60. theme:
  61. primary: indigo
  62. alt: blue-grey
  63. footer: blue-grey
  64. code:
  65. dark: true
  66. colorize: true
  67. colors:
  68. - red
  69. - pink
  70. - purple
  71. - deep-purple
  72. - indigo
  73. - blue
  74. - light-blue
  75. - cyan
  76. - teal
  77. - green
  78. - light-green
  79. - lime
  80. - yellow
  81. - amber
  82. - orange
  83. - deep-orange
  84. - brown
  85. - grey
  86. - blue-grey
  87. langs:
  88. -
  89. id: en
  90. name: English
  91. -
  92. id: zh
  93. name: Chinese - 中文
  94. -
  95. id: nl
  96. name: Dutch - Nederlands
  97. -
  98. id: fr
  99. name: French - Français
  100. -
  101. id: de
  102. name: German - Deutsch
  103. -
  104. id: ko
  105. name: Korean - 한국어
  106. -
  107. id: ru
  108. name: Russian - Русский
  109. -
  110. id: es
  111. name: Spanish - Español
  112. # ---------------------------------