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.

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