bundlewrap/bundles/pretalx/files/pretalx.cfg
Franzi fd421bf6f8
All checks were successful
bundlewrap/pipeline/head This commit looks good
add bundle:redis, add redis support to pretalx
2021-01-29 15:58:54 +01:00

35 lines
586 B
INI

[filesystem]
data = /opt/pretalx/data
static = /opt/pretalx/static
[site]
debug = False
url = https://${domain}
[database]
backend = postgresql
name = ${database['database']}
user = ${database['user']}
password = ${database['password']}
host = ${database.get('host', 'localhost')}
port = ${database.get('port', 5432)}
[mail]
from = ${mail_from}
host = localhost
port = 25
user =
password =
tls = False
ssl = False
% if node.has_bundle('redis'):
[celery]
backend = redis://127.0.0.1/1
broker = redis://127.0.0.1/2
[redis]
location = redis://@127.0.0.1:6379/3
session = True
% endif