wikijs-fork/server/app/data.yml

82 lines
1.5 KiB
YAML
Raw Normal View History

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
paths:
repo: ./repo
data: ./data
2017-07-29 21:33:08 +00:00
db:
type: postgres
2017-07-29 21:33:08 +00:00
host: localhost
port: 5432
user: wikijs
pass: wikijsrocks
db: wiki
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
configMode: auto
2017-07-29 21:33:08 +00:00
workers: 0
2017-08-03 03:47:11 +00:00
ha:
node: primary
uid: master
2017-08-03 03:47:11 +00:00
readonly: false
2017-12-24 05:34:47 +00:00
# DB defaults
auth:
public: false
strategies:
local:
isEnabled: true
2017-12-24 05:34:47 +00:00
allowSelfRegister: false
git:
enabled: false
logging:
telemetry: false
loggers:
console:
enabled: true
2017-10-08 21:21:36 +00:00
site:
lang: en
2017-12-24 05:34:47 +00:00
rtl: false
title: Wiki.js
# System defaults
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:
- auth
- common
jobs:
fetchGraphLocale:
onInit: false
cron: false
purgeUploads:
onInit: true
cron: '*/15 * * * *'
syncGraphLocales:
onInit: true
cron: '0 0 * * *'
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'
# ---------------------------------