data.yml 950 B

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