2017-01-10 03:45:56 +00:00
|
|
|
# ---------------------------------
|
|
|
|
# DO NOT EDIT THIS FILE!
|
|
|
|
# This is reserved for system use!
|
|
|
|
# ---------------------------------
|
|
|
|
name: Wiki.js
|
|
|
|
defaults:
|
|
|
|
config:
|
2017-12-24 05:34:47 +00:00
|
|
|
# File defaults
|
2017-01-10 03:45:56 +00:00
|
|
|
port: 80
|
2018-09-01 03:42:14 +00:00
|
|
|
bindIP: 0.0.0.0
|
2017-07-29 21:33:08 +00:00
|
|
|
db:
|
2018-03-25 02:35:47 +00:00
|
|
|
type: postgres
|
2017-07-29 21:33:08 +00:00
|
|
|
host: localhost
|
|
|
|
port: 5432
|
|
|
|
user: wikijs
|
|
|
|
pass: wikijsrocks
|
|
|
|
db: wiki
|
2018-03-25 02:35:47 +00:00
|
|
|
storage: ./db.sqlite
|
2017-07-29 21:33:08 +00:00
|
|
|
redis:
|
|
|
|
host: localhost
|
|
|
|
port: 6379
|
|
|
|
db: 0
|
|
|
|
password: null
|
2017-12-24 05:34:47 +00:00
|
|
|
# DB defaults
|
2018-06-11 03:23:09 +00:00
|
|
|
defaultEditor: 'markdown'
|
|
|
|
graphEndpoint: 'https://graph.requarks.io'
|
|
|
|
lang:
|
|
|
|
code: en
|
|
|
|
autoUpdate: true
|
|
|
|
namespaces: []
|
|
|
|
namespacing: false
|
|
|
|
public: false
|
|
|
|
telemetry:
|
|
|
|
clientId: ''
|
|
|
|
isEnabled: false
|
|
|
|
title: Wiki.js
|
|
|
|
theming:
|
|
|
|
theme: 'default'
|
|
|
|
darkMode: false
|
2018-01-28 05:40:25 +00:00
|
|
|
# System defaults
|
2018-05-28 18:46:55 +00:00
|
|
|
setup: false
|
2018-01-28 05:40:25 +00:00
|
|
|
cors:
|
|
|
|
credentials: true
|
|
|
|
maxAge: 600
|
|
|
|
methods: 'GET,POST'
|
|
|
|
origin: true
|
2017-10-08 21:21:36 +00:00
|
|
|
configNamespaces:
|
|
|
|
- auth
|
|
|
|
- features
|
|
|
|
- logging
|
|
|
|
- site
|
|
|
|
- theme
|
|
|
|
- uploads
|
2018-01-10 01:41:53 +00:00
|
|
|
localeNamespaces:
|
2018-06-17 21:29:19 +00:00
|
|
|
- admin
|
2018-01-10 01:41:53 +00:00
|
|
|
- auth
|
|
|
|
- common
|
2018-04-29 21:55:36 +00:00
|
|
|
jobs:
|
2018-05-07 03:21:48 +00:00
|
|
|
fetchGraphLocale:
|
|
|
|
onInit: false
|
|
|
|
cron: false
|
2018-07-22 20:25:39 +00:00
|
|
|
concurrency: 0
|
2018-04-29 21:55:36 +00:00
|
|
|
purgeUploads:
|
|
|
|
onInit: true
|
|
|
|
cron: '*/15 * * * *'
|
2018-07-22 20:25:39 +00:00
|
|
|
concurrency: 0
|
2018-08-19 05:22:59 +00:00
|
|
|
renderPage:
|
|
|
|
onInit: false
|
|
|
|
cron: false
|
|
|
|
concurrency: 1
|
2018-04-29 21:55:36 +00:00
|
|
|
syncGraphLocales:
|
|
|
|
onInit: true
|
|
|
|
cron: '0 0 * * *'
|
2018-07-22 20:25:39 +00:00
|
|
|
concurrency: 0
|
|
|
|
syncStorage:
|
|
|
|
onInit: false
|
|
|
|
cron: false
|
|
|
|
concurrency: 1
|
2018-10-14 21:38:39 +00:00
|
|
|
groups:
|
|
|
|
defaultPermissions:
|
|
|
|
- 'manage:pages'
|
|
|
|
- 'write:assets'
|
|
|
|
- 'read:comments'
|
|
|
|
- 'write:comments'
|
2017-10-23 01:58:07 +00:00
|
|
|
telemetry:
|
|
|
|
BUGSNAG_ID: 'bb4b324d0675bcbba10025617fd2cec8'
|
|
|
|
BUGSNAG_REMOTE: 'https://notify.bugsnag.com'
|
|
|
|
GA_ID: 'UA-9094100-7'
|
|
|
|
GA_REMOTE: 'https://www.google-analytics.com/collect'
|
2017-02-11 21:21:50 +00:00
|
|
|
# ---------------------------------
|