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.

105 lines
1.5 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. 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. workers: 0
  24. ha:
  25. nodeuid: primary
  26. readonly: false
  27. site:
  28. path: ''
  29. lang: en
  30. title: Wiki.js
  31. configNamespaces:
  32. - auth
  33. - features
  34. - git
  35. - logging
  36. - site
  37. - theme
  38. - uploads
  39. queues:
  40. - gitSync
  41. - uplClearTemp
  42. authProviders:
  43. - local
  44. - microsoft
  45. - google
  46. - facebook
  47. - github
  48. - slack
  49. - ldap
  50. - azure
  51. colors:
  52. - red
  53. - pink
  54. - purple
  55. - deep-purple
  56. - indigo
  57. - blue
  58. - light-blue
  59. - cyan
  60. - teal
  61. - green
  62. - light-green
  63. - lime
  64. - yellow
  65. - amber
  66. - orange
  67. - deep-orange
  68. - brown
  69. - grey
  70. - blue-grey
  71. langs:
  72. -
  73. id: en
  74. name: English
  75. -
  76. id: zh
  77. name: Chinese - 中文
  78. -
  79. id: nl
  80. name: Dutch - Nederlands
  81. -
  82. id: fr
  83. name: French - Français
  84. -
  85. id: de
  86. name: German - Deutsch
  87. -
  88. id: ja
  89. name: Japanese - 日本語
  90. -
  91. id: ko
  92. name: Korean - 한국어
  93. -
  94. id: fa
  95. name: Persian (Fārsi) - فارسی
  96. -
  97. id: pt
  98. name: Portuguese - Português
  99. -
  100. id: ru
  101. name: Russian - Русский
  102. -
  103. id: es
  104. name: Spanish - Español
  105. # ---------------------------------