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.

73 lines
1.5 KiB

5 years ago
5 years ago
  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. db:
  11. type: postgres
  12. host: localhost
  13. port: 5432
  14. user: wikijs
  15. pass: wikijsrocks
  16. db: wiki
  17. storage: ./db.sqlite
  18. ssl:
  19. enabled: false
  20. bindIP: 0.0.0.0
  21. logLevel: info
  22. # DB defaults
  23. graphEndpoint: 'https://graph.requarks.io'
  24. lang:
  25. code: en
  26. autoUpdate: true
  27. namespaces: []
  28. namespacing: false
  29. telemetry:
  30. clientId: ''
  31. isEnabled: false
  32. title: Wiki.js
  33. theming:
  34. theme: 'default'
  35. darkMode: false
  36. flags:
  37. sqllog: false
  38. # System defaults
  39. setup: false
  40. paths:
  41. content: ./content
  42. data: ./data
  43. cors:
  44. credentials: true
  45. maxAge: 600
  46. methods: 'GET,POST'
  47. origin: true
  48. localeNamespaces:
  49. - admin
  50. - auth
  51. - common
  52. jobs:
  53. purgeUploads:
  54. onInit: true
  55. schedule: PT15M
  56. syncGraphLocales:
  57. onInit: true
  58. schedule: P1D
  59. syncGraphUpdates:
  60. onInit: true
  61. schedule: P1D
  62. groups:
  63. defaultPermissions:
  64. - 'manage:pages'
  65. - 'write:assets'
  66. - 'read:comments'
  67. - 'write:comments'
  68. telemetry:
  69. BUGSNAG_ID: 'bb4b324d0675bcbba10025617fd2cec8'
  70. BUGSNAG_REMOTE: 'https://notify.bugsnag.com'
  71. GA_ID: 'UA-9094100-7'
  72. GA_REMOTE: 'https://www.google-analytics.com/batch'
  73. # ---------------------------------