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.

53 lines
1.0 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. # ---------------------------------