2018-09-08 13:29:35 +02:00
|
|
|
service:
|
2018-09-08 13:50:05 +02:00
|
|
|
# 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"
|
2018-09-08 13:29:35 +02:00
|
|
|
# The interface on which to run the webserver
|
2018-09-08 13:50:05 +02:00
|
|
|
interface: ":3456"
|
2018-09-08 13:29:35 +02:00
|
|
|
|
|
|
|
database:
|
2018-09-08 13:50:05 +02:00
|
|
|
# Database type to use. Supported types are mysql and sqlite.
|
2018-09-08 13:29:35 +02:00
|
|
|
type: "sqlite"
|
2018-09-08 13:50:05 +02:00
|
|
|
# Database user which is used to connect to the database.
|
|
|
|
user: "vikunja"
|
|
|
|
# Databse password
|
|
|
|
password: ""
|
|
|
|
# Databse host
|
|
|
|
host: "localhost"
|
|
|
|
# Databse to use
|
2018-09-08 13:29:35 +02:00
|
|
|
database: "vikunja"
|
|
|
|
# When using sqlite, this is the path where to store the data
|
|
|
|
Path: "./vikunja.db"
|
2018-09-08 13:50:05 +02:00
|
|
|
# Whether to show mysql queries or not. Useful for debugging.
|
|
|
|
showqueries: "false"
|