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.

51 lines
1023 B

  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. db: mongodb://localhost/wiki
  37. sessionSecret: null
  38. admin: null
  39. git:
  40. url: null
  41. branch: master
  42. auth:
  43. type: basic
  44. username: null
  45. password: null
  46. privateKey: null
  47. sslVerify: true
  48. signature:
  49. name: Wiki
  50. email: wiki@example.com
  51. # ---------------------------------