1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/wikijs_ynh.git synced 2024-09-03 20:36:09 +02:00
wikijs_ynh/conf/config.sample.yml

82 lines
2.7 KiB
YAML
Raw Normal View History

2019-01-29 21:56:56 +01:00
#######################################################################
# Wiki.js - CONFIGURATION #
#######################################################################
# Full documentation + examples:
# https://docs.requarks.io/wiki/install
# ---------------------------------------------------------------------
# Port the server should listen to
# ---------------------------------------------------------------------
port: __PORT__
2019-01-29 21:56:56 +01:00
# ---------------------------------------------------------------------
# Database
# ---------------------------------------------------------------------
# Supported Database Engines:
# - postgres = PostgreSQL 9.5 or later
# - mysql = MySQL 5.7.8
# - mariadb = MariaDB 10.2.7 or later
# - mssql = MS SQL Server 2012 or later
# - sqlite = SQLite 3.9 or later
db:
2019-01-30 02:25:32 +01:00
type: postgres
2019-01-29 21:56:56 +01:00
# PostgreSQL / MySQL / MariaDB / MS SQL Server only:
2019-01-30 01:41:05 +01:00
host: localhost
port: 5432
2019-01-29 22:07:31 +01:00
user: __DB_NAME__
2019-01-29 21:56:56 +01:00
pass: __DB_PWD__
db: __DB_NAME__
# SQLite only:
storage: path/to/database.sqlite
2019-02-21 18:34:49 +01:00
#######################################################################
# ADVANCED OPTIONS #
#######################################################################
# Do not change unless you know what you are doing!
2019-01-29 21:56:56 +01:00
# ---------------------------------------------------------------------
2019-02-21 18:34:49 +01:00
# Use X-Forwarded-For header
2019-01-29 21:56:56 +01:00
# ---------------------------------------------------------------------
2019-02-21 18:34:49 +01:00
# Enable only if Wiki.js is behind a reverse-proxy (nginx, apache, etc)
# or a cloud proxying services like Cloudflare.
2019-01-29 21:56:56 +01:00
2019-03-15 00:40:24 +01:00
trustProxy: true
2019-02-21 18:34:49 +01:00
# ---------------------------------------------------------------------
# SSL/TLS Settings
# ---------------------------------------------------------------------
# Consider using a reverse proxy (e.g. nginx) if you require more
# advanced options than those provided below.
ssl:
enabled: false
# Certificate format, either 'pem' or 'pfx':
format: pem
# Using PEM format:
key: path/to/key.pem
cert: path/to/cert.pem
# Using PFX format:
pfx: path/to/cert.pfx
# Passphrase when using encrypted PEM / PFX keys (default: null):
passphrase: null
# Diffie Hellman parameters, with key length being greater or equal
# to 1024 bits (default: null):
dhparam: null
# ---------------------------------------------------------------------
# IP address the server should listen to
# ---------------------------------------------------------------------
# Leave 0.0.0.0 for all interfaces
bindIP: 0.0.0.0
2019-01-29 21:56:56 +01:00
# ---------------------------------------------------------------------
# Log Level
# ---------------------------------------------------------------------
# Possible values: error, warn, info (default), verbose, debug, silly
logLevel: info