123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- # ---------------------------------
- # DO NOT EDIT THIS FILE!
- # This is reserved for system use!
- # ---------------------------------
- name: Wiki.js
- defaults:
- config:
- # File defaults
- port: 80
- db:
- type: postgres
- host: localhost
- port: 5432
- user: wikijs
- pass: wikijsrocks
- db: wiki
- ssl: false
- storage: ./db.sqlite
- ssl:
- enabled: false
- pool:
- min: 1
- bindIP: 0.0.0.0
- logLevel: info
- uploads:
- maxFileSize: 5242880
- maxFiles: 10
- offline: false
- # DB defaults
- graphEndpoint: 'https://graph.requarks.io'
- lang:
- code: en
- autoUpdate: true
- namespaces: []
- namespacing: false
- rtl: false
- telemetry:
- clientId: ''
- isEnabled: false
- title: Wiki.js
- theming:
- theme: 'default'
- iconset: 'md'
- darkMode: false
- security:
- securityIframe: true
- securityReferrerPolicy: true
- securityTrustProxy: true
- securitySRI: true
- securityHSTS: false
- securityHSTSDuration: 300
- securityCSP: false
- securityCSPDirectives: ''
- flags:
- ldapdebug: false
- sqllog: false
- # System defaults
- channel: STABLE
- setup: false
- dataPath: ./data
- cors:
- credentials: true
- maxAge: 600
- methods: 'GET,POST'
- origin: true
- search:
- maxHits: 100
- localeNamespaces:
- - admin
- - auth
- - common
- jobs:
- purgeUploads:
- onInit: true
- schedule: PT15M
- offlineSkip: false
- repeat: true
- syncGraphLocales:
- onInit: true
- schedule: P1D
- offlineSkip: true
- repeat: true
- syncGraphUpdates:
- onInit: true
- schedule: P1D
- offlineSkip: true
- repeat: true
- rebuildTree:
- onInit: true
- offlineSkip: false
- repeat: false
- immediate: true
- worker: true
- groups:
- defaultPermissions:
- - 'read:pages'
- - 'read:assets'
- - 'read:comments'
- - 'write:comments'
- defaultPageRules:
- - id: default
- deny: false
- match: START
- roles:
- - 'read:pages'
- - 'read:assets'
- - 'read:comments'
- - 'write:comments'
- path: ''
- locales: []
- telemetry:
- BUGSNAG_ID: 'bb4b324d0675bcbba10025617fd2cec8'
- BUGSNAG_REMOTE: 'https://notify.bugsnag.com'
- GA_ID: 'UA-9094100-7'
- GA_REMOTE: 'https://www.google-analytics.com/batch'
- reservedPaths:
- - login
- - logout
- - register
- - verify
- - favicons
- - fonts
- - img
- - js
- - svg
- pageExtensions:
- - md
- - html
- - txt
- # ---------------------------------
|