data.yml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. redis:
  19. host: localhost
  20. port: 6379
  21. db: 0
  22. password: null
  23. ssl:
  24. enabled: false
  25. bindIP: 0.0.0.0
  26. logLevel: info
  27. # DB defaults
  28. graphEndpoint: 'https://graph.requarks.io'
  29. lang:
  30. code: en
  31. autoUpdate: true
  32. namespaces: []
  33. namespacing: false
  34. telemetry:
  35. clientId: ''
  36. isEnabled: false
  37. title: Wiki.js
  38. theming:
  39. theme: 'default'
  40. darkMode: false
  41. # System defaults
  42. setup: false
  43. paths:
  44. content: ./content
  45. data: ./data
  46. cors:
  47. credentials: true
  48. maxAge: 600
  49. methods: 'GET,POST'
  50. origin: true
  51. localeNamespaces:
  52. - admin
  53. - auth
  54. - common
  55. jobs:
  56. fetchGraphLocale:
  57. onInit: false
  58. cron: false
  59. concurrency: 0
  60. purgeUploads:
  61. onInit: true
  62. cron: '*/15 * * * *'
  63. concurrency: 0
  64. renderPage:
  65. onInit: false
  66. cron: false
  67. concurrency: 1
  68. syncGraphLocales:
  69. onInit: true
  70. cron: '0 0 * * *'
  71. concurrency: 0
  72. syncGraphUpdates:
  73. onInit: true
  74. cron: '0 0 * * *'
  75. concurrency: 0
  76. syncStorage:
  77. onInit: false
  78. cron: false
  79. concurrency: 1
  80. groups:
  81. defaultPermissions:
  82. - 'manage:pages'
  83. - 'write:assets'
  84. - 'read:comments'
  85. - 'write:comments'
  86. telemetry:
  87. BUGSNAG_ID: 'bb4b324d0675bcbba10025617fd2cec8'
  88. BUGSNAG_REMOTE: 'https://notify.bugsnag.com'
  89. GA_ID: 'UA-9094100-7'
  90. GA_REMOTE: 'https://www.google-analytics.com/batch'
  91. # ---------------------------------