123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- #######################################################################
- # Wiki.js - CONFIGURATION #
- #######################################################################
- # Full explanation + examples in the documentation:
- # https://wiki.requarks.io/install
- # ---------------------------------------------------------------------
- # Title of this site
- # ---------------------------------------------------------------------
- title: Wiki
- # ---------------------------------------------------------------------
- # Full public path to the site, without the trailing slash
- # ---------------------------------------------------------------------
- host: http://localhost
- # ---------------------------------------------------------------------
- # Port the main server should listen to (80 by default)
- # ---------------------------------------------------------------------
- # To use process.env.PORT, comment the line below:
- port: 80
- # ---------------------------------------------------------------------
- # Data Directories
- # ---------------------------------------------------------------------
- paths:
- repo: ./repo
- data: ./data
- # ---------------------------------------------------------------------
- # Upload Limits
- # ---------------------------------------------------------------------
- # In megabytes (MB)
- uploads:
- maxImageFileSize: 3
- maxOtherFileSize: 100
- # ---------------------------------------------------------------------
- # Site Language
- # ---------------------------------------------------------------------
- # Possible values: en, fr
- lang: en
- # ---------------------------------------------------------------------
- # Site Authentication
- # ---------------------------------------------------------------------
- public: false
- auth:
- defaultReadAccess: false
- local:
- enabled: true
- google:
- enabled: true
- clientId: GOOGLE_CLIENT_ID
- clientSecret: GOOGLE_CLIENT_SECRET
- microsoft:
- enabled: true
- clientId: MS_APP_ID
- clientSecret: MS_APP_SECRET
- facebook:
- enabled: false
- clientId: FACEBOOK_APP_ID
- clientSecret: FACEBOOK_APP_SECRET
- github:
- enabled: false
- clientId: GITHUB_CLIENT_ID
- clientSecret: GITHUB_CLIENT_SECRET
- slack:
- enabled: false
- clientId: SLACK_CLIENT_ID
- clientSecret: SLACK_CLIENT_SECRET
- ldap:
- enabled: false
- url: ldap://serverhost:389
- bindDn: cn='root'
- bindCredentials: BIND_PASSWORD
- searchBase: o=users,o=example.com
- searchFilter: (uid={{username}})
- tlsEnabled: false
- tlsCertPath: C:\example\root_ca_cert.crt
- azure:
- enabled: false
- clientID: APP_ID
- clientSecret: APP_SECRET_KEY,
- resource: '00000002-0000-0000-c000-000000000000',
- tenant: 'YOUR_TENANT.onmicrosoft.com'
- # ---------------------------------------------------------------------
- # Secret key to use when encrypting sessions
- # ---------------------------------------------------------------------
- # Use a long and unique random string (256-bit keys are perfect!)
- sessionSecret: 1234567890abcdefghijklmnopqrstuvxyz
- # ---------------------------------------------------------------------
- # Database Connection String
- # ---------------------------------------------------------------------
- # You can also use an ENV variable by using $ENV_VAR_NAME as the value
- db: mongodb://localhost:27017/wiki
- # ---------------------------------------------------------------------
- # Git Connection Info
- # ---------------------------------------------------------------------
- git:
- url: https://github.com/Organization/Repo
- branch: master
- auth:
- # Type: basic or ssh
- type: ssh
- # Only for Basic authentication:
- username: marty
- password: MartyMcFly88
- # Only for SSH authentication:
- privateKey: /etc/wiki/keys/git.pem
- sslVerify: true
- signature:
- name: Marty
- email: marty@example.com
- # ---------------------------------------------------------------------
- # External Logging
- # ---------------------------------------------------------------------
- externalLogging:
- bugsnag: false
- loggly: false
- papertrail: false
- rollbar: false
- sentry: false
|