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.

87 lines
1.3 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. queues:
  28. - gitSync
  29. - uplClearTemp
  30. authProviders:
  31. - local
  32. - microsoft
  33. - google
  34. - facebook
  35. - github
  36. - slack
  37. - ldap
  38. - azure
  39. colors:
  40. - red
  41. - pink
  42. - purple
  43. - deep-purple
  44. - indigo
  45. - blue
  46. - light-blue
  47. - cyan
  48. - teal
  49. - green
  50. - light-green
  51. - lime
  52. - yellow
  53. - amber
  54. - orange
  55. - deep-orange
  56. - brown
  57. - grey
  58. - blue-grey
  59. langs:
  60. -
  61. id: en
  62. name: English
  63. -
  64. id: zh
  65. name: Chinese - 中文
  66. -
  67. id: nl
  68. name: Dutch - Nederlands
  69. -
  70. id: fr
  71. name: French - Français
  72. -
  73. id: de
  74. name: German - Deutsch
  75. -
  76. id: ko
  77. name: Korean - 한국어
  78. -
  79. id: pt
  80. name: Portuguese - Português
  81. -
  82. id: ru
  83. name: Russian - Русский
  84. -
  85. id: es
  86. name: Spanish - Español
  87. # ---------------------------------