vikunja/docs/content/doc/setup/config.md

133 lines
4.5 KiB
Markdown
Raw Normal View History

2019-02-17 19:53:04 +00:00
---
date: "2019-02-12:00:00+02:00"
title: "Config options"
draft: false
type: "doc"
menu:
sidebar:
parent: "setup"
---
2018-09-08 11:50:05 +00:00
# Configuration options
You can either use a `config.yml` file in the root directory of vikunja or set all config option with
environment variables. If you have both, the value set in the config file is used.
Variables are nested in the `config.yml`, these nested variables become `VIKUNJA_FIRST_CHILD` when configuring via
environment variables. So setting
2019-02-17 19:53:04 +00:00
{{< highlight bash >}}
2018-09-08 11:50:05 +00:00
export VIKUNJA_FIRST_CHILD=true
2019-02-17 19:53:04 +00:00
{{< /highlight >}}
2018-09-08 11:50:05 +00:00
is the same as defining it in a `config.yml` like so:
2019-02-17 19:53:04 +00:00
{{< highlight yaml >}}
2018-09-08 11:50:05 +00:00
first:
child: true
2019-02-17 19:53:04 +00:00
{{< /highlight >}}
2018-09-08 11:50:05 +00:00
2019-01-20 17:13:21 +00:00
## Config file locations
Vikunja will search on various places for a config file:
* Next to the location of the binary
* In the `service.rootpath` location set in a config (remember you can set config arguments via environment variables)
* In `/etc/vikunja`
* In `~/.config/vikunja`
2018-09-08 11:50:05 +00:00
# Default configuration with explanations
2018-12-18 16:01:46 +00:00
This is the same as the `config.yml.sample` file you'll find in the root of vikunja.
2018-09-08 11:50:05 +00:00
2019-02-17 19:53:04 +00:00
{{< highlight yaml >}}
2018-09-08 11:50:05 +00:00
service:
# This token is used to verify issued JWT tokens.
# Default is a random token which will be generated at each startup of vikunja.
# (This means all already issued tokens will be invalid once you restart vikunja)
JWTSecret: "cei6gaezoosah2bao3ieZohkae5aicah"
# The interface on which to run the webserver
interface: ":3456"
2018-10-27 09:33:28 +00:00
# The URL of the frontend, used to send password reset emails.
frontendurl: ""
2018-12-18 16:01:46 +00:00
# The base path on the file system where the binary and assets are.
# Vikunja will also look in this path for a config file, so you could provide only this variable to point to a folder
# with a config file which will then be used.
rootpath: <the path of the executable>
2018-11-09 10:30:17 +00:00
# The number of items which gets returned per page
pagecount: 50
# If set to true, enables a /metrics endpoint for prometheus to collect metrics about the system
# You'll need to use redis for this in order to enable common metrics over multiple nodes
enablemetrics: false
2018-09-08 11:50:05 +00:00
database:
# Database type to use. Supported types are mysql and sqlite.
type: "sqlite"
# Database user which is used to connect to the database.
user: "vikunja"
# Databse password
password: ""
# Databse host
host: "localhost"
# Databse to use
database: "vikunja"
# When using sqlite, this is the path where to store the data
Path: "./vikunja.db"
# Sets the max open connections to the database. Only used when using mysql.
openconnections: 100
2018-09-13 17:53:03 +00:00
cache:
# If cache is enabled or not
enabled: false
# Cache type. Possible values are memory or redis, you'll need to enable redis below when using redis
2018-09-13 17:53:03 +00:00
type: memory
# When using memory this defines the maximum size an element can take
maxelementsize: 1000
redis:
# Whether to enable redis or not
enabled: false
# The host of the redis server including its port.
2019-02-17 19:53:04 +00:00
host: 'localhost:6379'
# The password used to authenicate against the redis server
2019-02-17 19:53:04 +00:00
password: ''
# 0 means default database
db: 0
2018-10-27 09:33:28 +00:00
mailer:
2018-12-19 21:05:25 +00:00
# Whether to enable the mailer or not. If it is disabled, all users are enabled right away and password reset is not possible.
enabled: false
2018-10-27 09:33:28 +00:00
# SMTP Host
host: ""
# SMTP Host port
port: 587
# SMTP username
username: "user"
# SMTP password
password: ""
# Wether to skip verification of the tls certificate on the server
skiptlsverify: false
# The default from address when sending emails
fromemail: "mail@vikunja"
# The length of the mail queue.
queuelength: 100
# The timeout in seconds after which the current open connection to the mailserver will be closed.
queuetimeout: 30
2019-01-25 11:40:54 +00:00
log:
# A folder where all the logfiles should go.
path: <rootpath>logs
2019-01-25 11:40:54 +00:00
# Whether to show any logging at all or none
enabled: true
# Where the error log should go. Possible values are stdout, stderr, file or off to disable error logging.
2019-01-25 11:40:54 +00:00
errors: "stdout"
# Where the normal log should go. Possible values are stdout, stderr, file or off to disable standard logging.
2019-01-25 11:40:54 +00:00
standard: "stdout"
# Whether or not to log database queries. Useful for debugging. Possible values are stdout, stderr, file or off to disable database logging.
2019-01-25 11:40:54 +00:00
database: "off"
# Whether to log http requests or not. Possible values are stdout, stderr, file or off to disable http logging.
2019-01-25 11:40:54 +00:00
http: "stdout"
# Echo has its own logging which usually is unnessecary, which is why it is disabled by default. Possible values are stdout, stderr, file or off to disable standard logging.
2019-01-25 11:40:54 +00:00
echo: "off"
2019-02-17 19:53:04 +00:00
{{< /highlight >}}