123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- # ---------------------------------
- # DO NOT EDIT THIS FILE!
- # This is reserved for system use!
- # ---------------------------------
- name: Wiki.js
- defaults:
- config:
- port: 80
- paths:
- repo: ./repo
- data: ./data
- db:
- host: localhost
- port: 5432
- user: wikijs
- pass: wikijsrocks
- db: wiki
- redis:
- host: localhost
- port: 6379
- db: 0
- password: null
- configMode: interactive
- workers: 0
- ha:
- node: primary
- readonly: false
- site:
- path: ''
- lang: en
- title: Wiki.js
- configNamespaces:
- - auth
- - features
- - git
- - logging
- - site
- - theme
- - uploads
- queues:
- - gitSync
- - uplClearTemp
- telemetry:
- BUGSNAG_ID: 'bb4b324d0675bcbba10025617fd2cec8'
- BUGSNAG_REMOTE: 'https://notify.bugsnag.com'
- GA_ID: 'UA-9094100-7'
- GA_REMOTE: 'https://www.google-analytics.com/collect'
- authProviders:
- - local
- - microsoft
- - google
- - facebook
- - github
- - slack
- - ldap
- - azure
- colors:
- - red
- - pink
- - purple
- - deep-purple
- - indigo
- - blue
- - light-blue
- - cyan
- - teal
- - green
- - light-green
- - lime
- - yellow
- - amber
- - orange
- - deep-orange
- - brown
- - grey
- - blue-grey
- langs:
- -
- id: en
- name: English
- -
- id: zh
- name: Chinese - 中文
- -
- id: nl
- name: Dutch - Nederlands
- -
- id: fr
- name: French - Français
- -
- id: de
- name: German - Deutsch
- -
- id: ja
- name: Japanese - 日本語
- -
- id: ko
- name: Korean - 한국어
- -
- id: fa
- name: Persian (Fārsi) - فارسی
- -
- id: pt
- name: Portuguese - Português
- -
- id: ru
- name: Russian - Русский
- -
- id: es
- name: Spanish - Español
- rtlLangs:
- - fa
- # ---------------------------------
|