ansible/roles/pretix/templates/pretix.cfg.j2

35 lines
889 B
Django/Jinja

[pretix]
instance_name=Binary Kitchen Event Pretix
url=https://{{ pretix_domain }}
currency=EUR
datadir=/opt/pretix/data
trust_x_forwarded_for=on
trust_x_forwarded_proto=on
[database]
; For MySQL, replace with "mysql"
backend=postgresql
name={{ pretix_dbname }}
user={{ pretix_dbuser }}
; For MySQL, enter the user password. For PostgreSQL on the same host,
; we don't need one because we can use peer authentification if our
; PostgreSQL user matches our unix user.
password={{ pretix_dbpass }}
; For MySQL, use local socket, e.g. /var/run/mysqld/mysqld.sock
; For a remote host, supply an IP address
; For local postgres authentication, you can leave it empty
host=
[mail]
; See config file documentation for more options
from={{ pretix_mail }}
host={{ mail_server }}
[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