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.

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