mirror of https://github.com/requarks/wiki
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.
107 lines
3.6 KiB
107 lines
3.6 KiB
#######################################################################
|
|
# Wiki.js - CONFIGURATION #
|
|
#######################################################################
|
|
# Full documentation + examples:
|
|
# https://docs-beta.requarks.io/install
|
|
|
|
# ---------------------------------------------------------------------
|
|
# Port the server should listen to
|
|
# ---------------------------------------------------------------------
|
|
|
|
port: 3000
|
|
|
|
# ---------------------------------------------------------------------
|
|
# Database
|
|
# ---------------------------------------------------------------------
|
|
# Supported Database Engines:
|
|
# - postgres = PostgreSQL 9.5 or later
|
|
# - mysql = MySQL 8.0 or later (5.7.8 partially supported, refer to docs)
|
|
# - mariadb = MariaDB 10.2.7 or later
|
|
# - mssql = MS SQL Server 2012 or later
|
|
# - sqlite = SQLite 3.9 or later
|
|
|
|
db:
|
|
type: postgres
|
|
# PostgreSQL / MySQL / MariaDB / MS SQL Server only:
|
|
host: localhost
|
|
port: 5432
|
|
user: wikijs
|
|
pass: wikijsrocks
|
|
db: wiki
|
|
# SQLite only:
|
|
storage: path/to/database.sqlite
|
|
|
|
#######################################################################
|
|
# ADVANCED OPTIONS #
|
|
#######################################################################
|
|
# Do not change unless you know what you are doing!
|
|
|
|
# ---------------------------------------------------------------------
|
|
# Use X-Forwarded-For header
|
|
# ---------------------------------------------------------------------
|
|
# Enable only if Wiki.js is behind a reverse-proxy (nginx, apache, etc)
|
|
# or a cloud proxying services like Cloudflare.
|
|
|
|
trustProxy: false
|
|
|
|
# ---------------------------------------------------------------------
|
|
# 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
|
|
|
|
# Listen on this HTTP port and redirect all requests to HTTPS.
|
|
# Set to false to disable (default: 80):
|
|
redirectNonSSLPort: 80
|
|
|
|
# ---------------------------------------------------------------------
|
|
# Database Pool Options
|
|
# ---------------------------------------------------------------------
|
|
# Refer to https://github.com/vincit/tarn.js for all possible options
|
|
|
|
pool:
|
|
# min: 2
|
|
# max: 10
|
|
|
|
# ---------------------------------------------------------------------
|
|
# IP address the server should listen to
|
|
# ---------------------------------------------------------------------
|
|
# Leave 0.0.0.0 for all interfaces
|
|
|
|
bindIP: 0.0.0.0
|
|
|
|
# ---------------------------------------------------------------------
|
|
# Log Level
|
|
# ---------------------------------------------------------------------
|
|
# Possible values: error, warn, info (default), verbose, debug, silly
|
|
|
|
logLevel: info
|
|
|
|
# ---------------------------------------------------------------------
|
|
# Upload Limits
|
|
# ---------------------------------------------------------------------
|
|
# If you're using a reverse-proxy in front of Wiki.ks, you must also
|
|
# change your proxy upload limits!
|
|
|
|
uploads:
|
|
# Maximum upload size in bytes per file (default: 5242880 (5 MB))
|
|
maxFileSize: 5242880
|
|
# Maximum file uploads per request (default: 20)
|
|
maxFiles: 10
|