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.

85 lines
1.6 KiB

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