1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- ###################################################
- # REQUARKS WIKI - CONFIGURATION #
- ###################################################
- # -------------------------------------------------
- # Title of this site
- # -------------------------------------------------
- title: Wiki
- # -------------------------------------------------
- # Full path to the site, without the trailing slash
- # -------------------------------------------------
- host: http://localhost
- # -------------------------------------------------
- # Port the server should listen to (80 by default)
- # -------------------------------------------------
- # To use process.env.PORT, comment the line below:
- port: 80
- # -------------------------------------------------
- # Data Directories
- # -------------------------------------------------
- datadir:
- repo: ./repo
- db: ./data
- # -------------------------------------------------
- # Git Connection Info
- # -------------------------------------------------
- # Full explanation + examples in the documentation (https://requarks-wiki.readme.io/)
- git:
- url: https://github.com/Organization/Repo
- branch: master
- auth:
- # Type: basic, oauth or ssh
- type: ssh
- username: marty
- # Password, OAuth token or private key passphrase:
- password: MartyMcFly88
- # Only for SSH authentication:
- publicKey: /etc/requarkswiki/keys/git.pub
- privateKey: /etc/requarkswiki/keys/git.key
- sslVerify: true
- # -------------------------------------------------
- # Secret key to use when encrypting sessions
- # -------------------------------------------------
- # Use a long and unique random string (256-bit keys are perfect!)
- sessionSecret: 1234567890abcdefghijklmnopqrstuvxyz
- # -------------------------------------------------
- # Administrator email
- # -------------------------------------------------
- # An account will be created using the email specified here.
- # The password is set to "admin123" by default. Change it immediately upon login!!!
- admin: admin@company.com
- # -------------------------------------------------
- # Default page for Home
- # -------------------------------------------------
- homepage: Home.md
|