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.

76 lines
2.3 KiB

  1. ###################################################
  2. # REQUARKS WIKI - CONFIGURATION #
  3. ###################################################
  4. # -------------------------------------------------
  5. # Title of this site
  6. # -------------------------------------------------
  7. title: Wiki
  8. # -------------------------------------------------
  9. # Full path to the site, without the trailing slash
  10. # -------------------------------------------------
  11. host: http://localhost
  12. # -------------------------------------------------
  13. # Port the server should listen to (80 by default)
  14. # -------------------------------------------------
  15. # To use process.env.PORT, comment the line below:
  16. port: 80
  17. # -------------------------------------------------
  18. # MongoDB Connection String
  19. # -------------------------------------------------
  20. # Full explanation + examples in the documentation (https://opsstatus.readme.io/)
  21. db: mongodb://localhost/wiki
  22. # -------------------------------------------------
  23. # Redis Connection Info
  24. # -------------------------------------------------
  25. # Full explanation + examples in the documentation (https://opsstatus.readme.io/)
  26. redis:
  27. host: localhost
  28. port: 6379
  29. db: 0
  30. # -------------------------------------------------
  31. # Git Connection Info
  32. # -------------------------------------------------
  33. # Full explanation + examples in the documentation (https://requarks-wiki.readme.io/)
  34. git:
  35. path: auto
  36. mode: remote
  37. url: https://github.com/Organization/Repo
  38. auth:
  39. type: ssh
  40. user: gitusername
  41. publickey: /etc/requarkswiki/keys/git.pub
  42. privatekey: /etc/requarkswiki/keys/git.key
  43. passphrase: SomeSshPassphrase
  44. # auth:
  45. # type: oauth
  46. # token: 1234567890abcdefghijklmnopqrstuvxyz
  47. # auth:
  48. # type: basic
  49. # user: johnsmith
  50. # pass: password123
  51. # -------------------------------------------------
  52. # Secret key to use when encrypting sessions
  53. # -------------------------------------------------
  54. # Use a long and unique random string (256-bit keys are perfect!)
  55. sessionSecret: 1234567890abcdefghijklmnopqrstuvxyz
  56. # -------------------------------------------------
  57. # Administrator email
  58. # -------------------------------------------------
  59. # An account will be created using the email specified here.
  60. # The password is set to "admin123" by default. Change it immediately upon login!!!
  61. admin: admin@company.com