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.

56 lines
1.7 KiB

  1. #######################################################################
  2. # Wiki.js - CONFIGURATION #
  3. #######################################################################
  4. # Full documentation + examples:
  5. # https://docs.requarks.io/wiki/install
  6. # ---------------------------------------------------------------------
  7. # Port the server should listen to
  8. # ---------------------------------------------------------------------
  9. port: 80
  10. # ---------------------------------------------------------------------
  11. # IP address the server should listen to
  12. # ---------------------------------------------------------------------
  13. # Do not change unless you know what you are doing!
  14. bindIP: 0.0.0.0
  15. # ---------------------------------------------------------------------
  16. # Database
  17. # ---------------------------------------------------------------------
  18. # Supported Database Engines:
  19. # - postgres = PostgreSQL 9.5 or later
  20. # - mysql = MySQL 5.7.8 / MariaDB 10.2.7 or later
  21. # - mssql = MS SQL Server 2012 or later
  22. # - sqlite = SQLite 3.9 or later
  23. db:
  24. type: postgres
  25. # PostgreSQL / MySQL / MariaDB / MS SQL Server only:
  26. host: localhost
  27. port: 5432
  28. user: wikijs
  29. pass: wikijsrocks
  30. db: wiki
  31. # SQLite only:
  32. storage: path/to/database.sqlite
  33. # ---------------------------------------------------------------------
  34. # Redis
  35. # ---------------------------------------------------------------------
  36. # Redis 3.2 or later required
  37. redis:
  38. host: localhost
  39. port: 6379
  40. db: 0
  41. password: null
  42. # ---------------------------------------------------------------------
  43. # Log Level
  44. # ---------------------------------------------------------------------
  45. # Possible values: error, warn, info (default), verbose, debug, silly
  46. logLevel: info