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.

80 lines
1.4 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. local:
  25. enabled: true
  26. microsoft:
  27. enabled: false
  28. google:
  29. enabled: false
  30. facebook:
  31. enabled: false
  32. github:
  33. enabled: false
  34. slack:
  35. enabled: false
  36. ldap:
  37. enabled: false
  38. db: mongodb://localhost/wiki
  39. sessionSecret: null
  40. admin: null
  41. git:
  42. url: null
  43. branch: master
  44. auth:
  45. type: basic
  46. username: null
  47. password: null
  48. privateKey: null
  49. sslVerify: true
  50. signature:
  51. name: Wiki
  52. email: wiki@example.com
  53. externalLogging:
  54. bugsnap: false
  55. loggly: false
  56. papertrail: false
  57. rollbar: false
  58. langs:
  59. -
  60. id: en
  61. name: English
  62. -
  63. id: fr
  64. name: French - Français
  65. -
  66. id: de
  67. name: German - Deutsch
  68. -
  69. id: ko
  70. name: Korean - 한국어
  71. -
  72. id: pt
  73. name: Portuguese - Português
  74. -
  75. id: ru
  76. name: Russian - Русский
  77. -
  78. id: es
  79. name: Spanish - Español
  80. # ---------------------------------