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.

88 lines
1.7 KiB

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