122 lines
2.3 KiB
YAML
Raw Normal View History

2017-01-09 22:45:56 -05:00
# ---------------------------------
# DO NOT EDIT THIS FILE!
# This is reserved for system use!
# ---------------------------------
name: Wiki.js
defaults:
config:
2017-12-24 00:34:47 -05:00
# File defaults
2017-01-09 22:45:56 -05:00
port: 80
2017-07-29 17:33:08 -04:00
db:
type: postgres
2017-07-29 17:33:08 -04:00
host: localhost
port: 5432
user: wikijs
pass: wikijsrocks
db: wiki
ssl: false
storage: ./db.sqlite
2019-01-30 01:30:05 -05:00
ssl:
enabled: false
2019-06-21 23:39:04 -04:00
pool:
min: 0
2019-02-09 12:32:23 -05:00
bindIP: 0.0.0.0
logLevel: info
uploads:
maxFileSize: 5242880
maxFiles: 10
2019-06-21 20:54:09 -04:00
offline: false
2017-12-24 00:34:47 -05:00
# DB defaults
2018-06-10 23:23:09 -04:00
graphEndpoint: 'https://graph.requarks.io'
lang:
code: en
autoUpdate: true
namespaces: []
namespacing: false
rtl: false
2018-06-10 23:23:09 -04:00
telemetry:
clientId: ''
isEnabled: false
title: Wiki.js
theming:
theme: 'default'
2019-07-13 01:45:03 -04:00
iconset: 'md'
2018-06-10 23:23:09 -04:00
darkMode: false
security:
securityIframe: true
securityReferrerPolicy: true
securityHSTS: false
securityHSTSDuration: 300
securityCSP: false
securityCSPDirectives: ''
2019-02-23 18:22:25 -05:00
flags:
2019-06-04 22:23:32 -04:00
ldapdebug: false
2019-02-23 18:22:25 -05:00
sqllog: false
# System defaults
2019-06-08 21:00:12 -04:00
channel: BETA
2018-05-28 14:46:55 -04:00
setup: false
paths:
content: ./content
data: ./data
cors:
credentials: true
maxAge: 600
methods: 'GET,POST'
origin: true
2019-03-09 00:51:02 -05:00
search:
maxHits: 100
2018-01-09 20:41:53 -05:00
localeNamespaces:
- admin
2018-01-09 20:41:53 -05:00
- auth
- common
jobs:
purgeUploads:
onInit: true
schedule: PT15M
2019-06-21 20:54:09 -04:00
offlineSkip: false
syncGraphLocales:
onInit: true
schedule: P1D
2019-06-21 20:54:09 -04:00
offlineSkip: true
2019-01-13 15:37:45 -05:00
syncGraphUpdates:
onInit: true
schedule: P1D
2019-06-21 20:54:09 -04:00
offlineSkip: true
2018-10-14 17:38:39 -04:00
groups:
defaultPermissions:
- 'read:pages'
- 'read:assets'
2018-10-14 17:38:39 -04:00
- 'read:comments'
- 'write:comments'
defaultPageRules:
- id: default
deny: false
match: START
roles:
- 'read:pages'
- 'read:assets'
- 'read:comments'
- 'write:comments'
path: ''
locales: []
2017-10-22 21:58:07 -04:00
telemetry:
BUGSNAG_ID: 'bb4b324d0675bcbba10025617fd2cec8'
BUGSNAG_REMOTE: 'https://notify.bugsnag.com'
GA_ID: 'UA-9094100-7'
2019-02-02 01:17:09 -05:00
GA_REMOTE: 'https://www.google-analytics.com/batch'
reservedPaths:
- login
- logout
- register
- verify
- favicons
- fonts
- img
- js
- svg
pageExtensions:
- md
- html
- txt
# ---------------------------------