mirror of
https://github.com/roles-ansible/ansible_collection_pretix.git
synced 2024-10-28 22:01:03 +01:00
32 lines
728 B
Django/Jinja
32 lines
728 B
Django/Jinja
{{ ansible_managed | ansible.builtin.comment(decoration=';') }}
|
|
|
|
[pretix]
|
|
instance_name=My pretix installation
|
|
url=https://pretix.mydomain.com
|
|
currency=EUR
|
|
datadir=/var/pretix/data
|
|
trust_x_forwarded_for=on
|
|
trust_x_forwarded_proto=on
|
|
|
|
[database]
|
|
backend=postgresql
|
|
name=pretix
|
|
user=pretix
|
|
; For PostgreSQL on the same host, we don't need a password because we can use
|
|
; peer authentication if our PostgreSQL user matches our unix user.
|
|
password=
|
|
; For local postgres authentication, you can leave it empty
|
|
host=
|
|
|
|
[mail]
|
|
; See config file documentation for more options
|
|
from=tickets@yourdomain.com
|
|
host=127.0.0.1
|
|
|
|
[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
|