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.

93 lines
1.8 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. paths:
  43. content: ./content
  44. data: ./data
  45. cors:
  46. credentials: true
  47. maxAge: 600
  48. methods: 'GET,POST'
  49. origin: true
  50. configNamespaces:
  51. - auth
  52. - features
  53. - logging
  54. - site
  55. - theme
  56. - uploads
  57. localeNamespaces:
  58. - admin
  59. - auth
  60. - common
  61. jobs:
  62. fetchGraphLocale:
  63. onInit: false
  64. cron: false
  65. concurrency: 0
  66. purgeUploads:
  67. onInit: true
  68. cron: '*/15 * * * *'
  69. concurrency: 0
  70. renderPage:
  71. onInit: false
  72. cron: false
  73. concurrency: 1
  74. syncGraphLocales:
  75. onInit: true
  76. cron: '0 0 * * *'
  77. concurrency: 0
  78. syncStorage:
  79. onInit: false
  80. cron: false
  81. concurrency: 1
  82. groups:
  83. defaultPermissions:
  84. - 'manage:pages'
  85. - 'write:assets'
  86. - 'read:comments'
  87. - 'write:comments'
  88. telemetry:
  89. BUGSNAG_ID: 'bb4b324d0675bcbba10025617fd2cec8'
  90. BUGSNAG_REMOTE: 'https://notify.bugsnag.com'
  91. GA_ID: 'UA-9094100-7'
  92. GA_REMOTE: 'https://www.google-analytics.com/collect'
  93. # ---------------------------------