You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wiki/server/app/data.yml

148 lines
2.3 KiB

# ---------------------------------
# DO NOT EDIT THIS FILE!
# This is reserved for system use!
# ---------------------------------
name: Wiki.js
defaults:
config:
# File defaults
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: auto
workers: 0
ha:
node: primary
readonly: false
# DB defaults
auth:
public: false
strategies:
local:
isEnabled: true
allowSelfRegister: false
git:
enabled: false
logging:
telemetry: false
loggers:
console:
enabled: true
site:
lang: en
rtl: false
title: Wiki.js
# System defaults
cors:
credentials: true
maxAge: 600
methods: 'GET,POST'
origin: true
configNamespaces:
- auth
- features
- logging
- site
- theme
- uploads
localeNamespaces:
- auth
- common
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
original: English
-
id: zh
name: Chinese
original: 中文
-
id: nl
name: Dutch
original: Nederlands
-
id: fr
name: French
original: Français
-
id: de
name: German
original: Deutsch
-
id: ja
name: Japanese
original: 日本語
-
id: ko
name: Korean
original: 한국어
-
id: fa
name: Persian (Fārsi)
original: فارسی
-
id: pt
name: Portuguese
original: Português
-
id: ru
name: Russian
original: Русский
-
id: es
name: Spanish
original: Español
rtlLangs:
- fa
# ---------------------------------