data.yml 1.5 KB

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