2016-09-05 04:39:59 +00:00
|
|
|
#######################################################################
|
2016-12-09 03:44:31 +00:00
|
|
|
# Wiki.js - CONFIGURATION #
|
2016-09-05 04:39:59 +00:00
|
|
|
#######################################################################
|
|
|
|
# Full explanation + examples in the documentation:
|
2017-04-29 20:33:48 +00:00
|
|
|
# https://docs.requarks.io/wiki/install
|
2016-08-17 00:56:55 +00:00
|
|
|
|
2016-09-05 04:39:59 +00:00
|
|
|
# ---------------------------------------------------------------------
|
2017-10-22 17:30:16 +00:00
|
|
|
# Port the main server should listen to
|
2016-09-05 04:39:59 +00:00
|
|
|
# ---------------------------------------------------------------------
|
2016-08-17 00:56:55 +00:00
|
|
|
|
|
|
|
port: 80
|
|
|
|
|
2016-09-05 04:39:59 +00:00
|
|
|
# ---------------------------------------------------------------------
|
2016-08-22 03:18:31 +00:00
|
|
|
# Data Directories
|
2016-09-05 04:39:59 +00:00
|
|
|
# ---------------------------------------------------------------------
|
2016-08-17 00:56:55 +00:00
|
|
|
|
2016-10-15 03:31:15 +00:00
|
|
|
paths:
|
2016-08-27 05:04:08 +00:00
|
|
|
repo: ./repo
|
2016-10-15 03:31:15 +00:00
|
|
|
data: ./data
|
|
|
|
|
2016-12-22 01:38:12 +00:00
|
|
|
# ---------------------------------------------------------------------
|
2017-10-22 17:30:16 +00:00
|
|
|
# Database
|
2017-10-22 17:24:43 +00:00
|
|
|
# ---------------------------------------------------------------------
|
|
|
|
|
2017-10-22 17:30:16 +00:00
|
|
|
db:
|
|
|
|
host: localhost
|
|
|
|
port: 5432
|
|
|
|
user: wikijs
|
|
|
|
pass: wikijsrocks
|
|
|
|
db: wiki
|
2017-10-22 17:24:43 +00:00
|
|
|
|
|
|
|
# ---------------------------------------------------------------------
|
2017-10-22 17:30:16 +00:00
|
|
|
# Redis
|
2017-10-22 17:24:43 +00:00
|
|
|
# ---------------------------------------------------------------------
|
|
|
|
|
2017-10-22 17:30:16 +00:00
|
|
|
redis:
|
|
|
|
host: localhost
|
|
|
|
port: 6379
|
|
|
|
db: 0
|
|
|
|
password: null
|
2017-10-22 17:24:43 +00:00
|
|
|
|
|
|
|
# Enable for right to left languages (e.g. arabic):
|
|
|
|
langRtl: false
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------
|
2017-10-22 17:30:16 +00:00
|
|
|
# Background Workers
|
2017-03-29 00:19:01 +00:00
|
|
|
# ---------------------------------------------------------------------
|
2017-10-22 17:30:16 +00:00
|
|
|
# Leave 0 for auto based on CPU cores
|
2017-03-29 00:19:01 +00:00
|
|
|
|
2017-10-22 17:30:16 +00:00
|
|
|
workers: 0
|
2017-03-29 00:19:01 +00:00
|
|
|
|
2017-07-09 03:59:24 +00:00
|
|
|
# ---------------------------------------------------------------------
|
2017-10-22 17:30:16 +00:00
|
|
|
# High Availability
|
2017-07-09 03:59:24 +00:00
|
|
|
# ---------------------------------------------------------------------
|
2017-10-22 17:30:16 +00:00
|
|
|
# Read the docs BEFORE changing these settings!
|
2017-07-09 03:59:24 +00:00
|
|
|
|
2017-10-22 17:30:16 +00:00
|
|
|
ha:
|
|
|
|
nodeuid: primary
|
|
|
|
readonly: false
|