ansible/roles/pretalx/templates/pretalx.cfg.j2

28 lines
435 B
Plaintext
Raw Normal View History

2023-09-15 12:08:32 +02:00
[filesystem]
data = /opt/pretalx/data
2023-11-07 16:50:10 +01:00
static = /opt/pretalx/static
2023-09-15 12:08:32 +02:00
[site]
debug = False
url = https://{{ pretalx_domain }}
[database]
backend = postgresql
name = {{ pretalx_dbname }}
user = {{ pretalx_dbuser }}
password = {{ pretalx_dbpass }}
host =
[mail]
from={{ pretalx_mail }}
host={{ mail_server }}
tls = True
[redis]
location=redis://127.0.0.1/0
sessions=true
[celery]
backend=redis://127.0.0.1/1
broker=redis://127.0.0.1/2