data.yml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. # ---------------------------------
  2. # DO NOT EDIT THIS FILE!
  3. # This is reserved for system use!
  4. # ---------------------------------
  5. name: Wiki.js
  6. defaults:
  7. config:
  8. port: 80
  9. paths:
  10. repo: ./repo
  11. data: ./data
  12. db:
  13. host: localhost
  14. port: 5432
  15. user: wikijs
  16. pass: wikijsrocks
  17. db: wiki
  18. redis:
  19. host: localhost
  20. port: 6379
  21. db: 0
  22. password: null
  23. configMode: interactive
  24. workers: 0
  25. ha:
  26. node: primary
  27. readonly: false
  28. site:
  29. path: ''
  30. lang: en
  31. title: Wiki.js
  32. configNamespaces:
  33. - auth
  34. - features
  35. - git
  36. - logging
  37. - site
  38. - theme
  39. - uploads
  40. queues:
  41. - gitSync
  42. - uplClearTemp
  43. telemetry:
  44. BUGSNAG_ID: 'bb4b324d0675bcbba10025617fd2cec8'
  45. BUGSNAG_REMOTE: 'https://notify.bugsnag.com'
  46. GA_ID: 'UA-9094100-7'
  47. GA_REMOTE: 'https://www.google-analytics.com/collect'
  48. authProviders:
  49. - local
  50. - microsoft
  51. - google
  52. - facebook
  53. - github
  54. - slack
  55. - ldap
  56. - azure
  57. colors:
  58. - red
  59. - pink
  60. - purple
  61. - deep-purple
  62. - indigo
  63. - blue
  64. - light-blue
  65. - cyan
  66. - teal
  67. - green
  68. - light-green
  69. - lime
  70. - yellow
  71. - amber
  72. - orange
  73. - deep-orange
  74. - brown
  75. - grey
  76. - blue-grey
  77. langs:
  78. -
  79. id: en
  80. name: English
  81. -
  82. id: zh
  83. name: Chinese - 中文
  84. -
  85. id: nl
  86. name: Dutch - Nederlands
  87. -
  88. id: fr
  89. name: French - Français
  90. -
  91. id: de
  92. name: German - Deutsch
  93. -
  94. id: ja
  95. name: Japanese - 日本語
  96. -
  97. id: ko
  98. name: Korean - 한국어
  99. -
  100. id: fa
  101. name: Persian (Fārsi) - فارسی
  102. -
  103. id: pt
  104. name: Portuguese - Português
  105. -
  106. id: ru
  107. name: Russian - Русский
  108. -
  109. id: es
  110. name: Spanish - Español
  111. rtlLangs:
  112. - fa
  113. # ---------------------------------