vikunja-api/config.yml.sample

65 lines
2.1 KiB
Plaintext
Raw Normal View History

service:
2018-09-08 11:50:05 +00: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"
# The interface on which to run the webserver
2018-09-08 11:50:05 +00:00
interface: ":3456"
2018-10-27 09:33:28 +00:00
# The URL of the frontend, used to send password reset emails.
frontendurl: ""
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: true
database:
2018-09-08 11:50:05 +00:00
# Database type to use. Supported types are mysql and sqlite.
type: "sqlite"
2018-09-08 11:50:05 +00:00
# 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"
2018-09-08 11:50:05 +00:00
# Whether to show mysql queries or not. Useful for debugging.
2018-09-13 17:53:03 +00:00
showqueries: "false"
# Sets the max open connections to the database. Only used when using mysql.
openconnections: 100
redis:
# Whether to enable redis or not
enabled: false
# The host of the redis server including its port.
redishost: 'localhost:6379'
# The password used to authenicate against the redis server
redispassword: ''
# 0 means default database
db: 0
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
2018-10-27 09:33:28 +00:00
mailer:
# 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
2018-11-09 10:30:17 +00:00
fromemail: 'mail@vikunja'