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
2.1 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. # Data Directories
  19. # -------------------------------------------------
  20. datadir:
  21. repo: ./repo
  22. db: ./data
  23. # -------------------------------------------------
  24. # Git Connection Info
  25. # -------------------------------------------------
  26. # Full explanation + examples in the documentation (https://requarks-wiki.readme.io/)
  27. git:
  28. url: https://github.com/Organization/Repo
  29. branch: master
  30. auth:
  31. # Type: basic, oauth or ssh
  32. type: ssh
  33. username: marty
  34. # Password, OAuth token or private key passphrase:
  35. password: MartyMcFly88
  36. # Only for SSH authentication:
  37. publicKey: /etc/requarkswiki/keys/git.pub
  38. privateKey: /etc/requarkswiki/keys/git.key
  39. sslVerify: true
  40. # -------------------------------------------------
  41. # Secret key to use when encrypting sessions
  42. # -------------------------------------------------
  43. # Use a long and unique random string (256-bit keys are perfect!)
  44. sessionSecret: 1234567890abcdefghijklmnopqrstuvxyz
  45. # -------------------------------------------------
  46. # Administrator email
  47. # -------------------------------------------------
  48. # An account will be created using the email specified here.
  49. # The password is set to "admin123" by default. Change it immediately upon login!!!
  50. admin: admin@company.com
  51. # -------------------------------------------------
  52. # Default page for Home
  53. # -------------------------------------------------
  54. homepage: Home.md