34 lines
971 B
Django/Jinja
34 lines
971 B
Django/Jinja
# This is an example pretalx configuration file.
|
|
# Documentation: https://docs.pretalx.org/administrator/configure.html
|
|
|
|
[filesystem]
|
|
data = /var/pretalx/data
|
|
static = /var/pretalx/static
|
|
|
|
[site]
|
|
debug = False
|
|
url = https://pretalx.mydomain.com
|
|
|
|
[database]
|
|
# For MySQL, replace with "mysql"
|
|
backend = postgresql
|
|
name = pretalx
|
|
user = pretalx
|
|
# 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 = Change this in production or you're going to have a bad time
|
|
# For MySQL, you can use a local socket, e.g. /var/run/mysqld/mysqld.sock
|
|
# For a remote host, supply an IP address
|
|
# For local postgres authentication, you can leave the host empty
|
|
host = localhost
|
|
port = 5432
|
|
|
|
[mail]
|
|
from = admin@localhost
|
|
host = localhost
|
|
port = 25
|
|
user = admin
|
|
password = Change this in production or you're going to have a bad time
|
|
tls = False
|
|
ssl = True
|