1
0
forked from infra/ansible
infra/roles/pretix/templates/pretix.cfg.j2

27 lines
461 B
Plaintext
Raw Normal View History

2021-11-01 22:49:09 +01:00
[pretix]
2022-03-14 17:42:49 +01:00
instance_name=Binary Kitchen Event Pretix
url=https://{{ pretix_domain }}
2021-11-01 22:49:09 +01:00
currency=EUR
datadir=/opt/pretix/data
trust_x_forwarded_for=on
trust_x_forwarded_proto=on
[database]
backend=postgresql
name={{ pretix_dbname }}
user={{ pretix_dbuser }}
password={{ pretix_dbpass }}
[mail]
from={{ pretix_mail }}
host={{ mail_server }}
2023-09-15 09:11:56 +02:00
tls=on
2021-11-01 22:49:09 +01:00
[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