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.

86 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. signature:
  54. name: Wiki
  55. email: wiki@example.com
  56. features:
  57. mathjax: true
  58. externalLogging:
  59. bugsnap: false
  60. loggly: false
  61. papertrail: false
  62. rollbar: false
  63. sentry: false
  64. langs:
  65. -
  66. id: en
  67. name: English
  68. -
  69. id: fr
  70. name: French - Français
  71. -
  72. id: de
  73. name: German - Deutsch
  74. -
  75. id: ko
  76. name: Korean - 한국어
  77. -
  78. id: pt
  79. name: Portuguese - Português
  80. -
  81. id: ru
  82. name: Russian - Русский
  83. -
  84. id: es
  85. name: Spanish - Español
  86. # ---------------------------------