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.

71 lines
1.4 KiB

5 years ago
  1. # ---------------------------------
  2. # DO NOT EDIT THIS FILE!
  3. # This is reserved for system use!
  4. # ---------------------------------
  5. name: Wiki.js
  6. defaults:
  7. config:
  8. # File defaults
  9. port: 80
  10. db:
  11. type: postgres
  12. host: localhost
  13. port: 5432
  14. user: wikijs
  15. pass: wikijsrocks
  16. db: wiki
  17. storage: ./db.sqlite
  18. ssl:
  19. enabled: false
  20. bindIP: 0.0.0.0
  21. logLevel: info
  22. # DB defaults
  23. graphEndpoint: 'https://graph.requarks.io'
  24. lang:
  25. code: en
  26. autoUpdate: true
  27. namespaces: []
  28. namespacing: false
  29. telemetry:
  30. clientId: ''
  31. isEnabled: false
  32. title: Wiki.js
  33. theming:
  34. theme: 'default'
  35. darkMode: false
  36. # System defaults
  37. setup: false
  38. paths:
  39. content: ./content
  40. data: ./data
  41. cors:
  42. credentials: true
  43. maxAge: 600
  44. methods: 'GET,POST'
  45. origin: true
  46. localeNamespaces:
  47. - admin
  48. - auth
  49. - common
  50. jobs:
  51. purgeUploads:
  52. onInit: true
  53. schedule: PT15M
  54. syncGraphLocales:
  55. onInit: true
  56. schedule: P1D
  57. syncGraphUpdates:
  58. onInit: true
  59. schedule: P1D
  60. groups:
  61. defaultPermissions:
  62. - 'manage:pages'
  63. - 'write:assets'
  64. - 'read:comments'
  65. - 'write:comments'
  66. telemetry:
  67. BUGSNAG_ID: 'bb4b324d0675bcbba10025617fd2cec8'
  68. BUGSNAG_REMOTE: 'https://notify.bugsnag.com'
  69. GA_ID: 'UA-9094100-7'
  70. GA_REMOTE: 'https://www.google-analytics.com/batch'
  71. # ---------------------------------