attempt to configure pretalx
This commit is contained in:
parent
88cb20a9c7
commit
8e964181de
2 changed files with 56 additions and 22 deletions
|
|
@ -54,28 +54,30 @@ services:
|
||||||
- AUTOMIGRATE=skip # migration is run by the web worker
|
- AUTOMIGRATE=skip # migration is run by the web worker
|
||||||
|
|
||||||
# Pretalx
|
# Pretalx
|
||||||
# pretalx:
|
pretalx:
|
||||||
# <<: *service-defaults
|
<<: *service-defaults
|
||||||
# image: harbor.aalen.space/sfz.aalen/infra/images/pretalx-ctbk:1741346032
|
image: harbor.aalen.space/sfz.aalen/infra/images/pretalx-ctbk:1741346032
|
||||||
# depends_on: [valkey]
|
depends_on: [valkey]
|
||||||
# restart: always
|
restart: always
|
||||||
# ports:
|
ports:
|
||||||
# - name: web-v6
|
- name: web-v6
|
||||||
# <<: *web
|
<<: *web
|
||||||
# published: *pretalx-port
|
published: *pretalx-port
|
||||||
# host_ip: "[::]"
|
host_ip: "[::]"
|
||||||
# - name: web-v4
|
- name: web-v4
|
||||||
# <<: *web
|
<<: *web
|
||||||
# published: *pretalx-port
|
published: *pretalx-port
|
||||||
# host_ip: "0.0.0.0"
|
host_ip: "0.0.0.0"
|
||||||
# volumes:
|
volumes:
|
||||||
# - ./pretalx.cfg:/etc/pretalx/pretalx.cfg
|
- ./pretalx.cfg:/etc/pretalx/pretalx.cfg:ro
|
||||||
# - /var/run/postgresql:/run/postgresql
|
- /var/run/postgresql:/run/postgresql
|
||||||
# - /run/valkey:/run/valkey
|
- /run/valkey:/run/valkey
|
||||||
# - /var/lib/pretix:/data
|
- /var/lib/pretalx:/data
|
||||||
# environment:
|
environment:
|
||||||
# - TZ=Europe/Berlin
|
TZ: Europe/Berlin
|
||||||
# env_file: ".env-pretalx"
|
# testing for limited memory
|
||||||
|
GUNICORN_WORKERS: "1"
|
||||||
|
env_file: ".env-pretalx"
|
||||||
|
|
||||||
# Cache databases
|
# Cache databases
|
||||||
memcached:
|
memcached:
|
||||||
|
|
|
||||||
32
pretalx.cfg
32
pretalx.cfg
|
|
@ -0,0 +1,32 @@
|
||||||
|
# This is an example pretalx configuration file.
|
||||||
|
# Documentation: https://docs.pretalx.org/administrator/configure/
|
||||||
|
|
||||||
|
[filesystem]
|
||||||
|
data = /data
|
||||||
|
static = /data/static
|
||||||
|
|
||||||
|
[site]
|
||||||
|
debug = False
|
||||||
|
url = https://cfp.ctbk.de
|
||||||
|
|
||||||
|
[database]
|
||||||
|
backend = postgresql
|
||||||
|
name = pretalx
|
||||||
|
user = pretalx
|
||||||
|
host = /run/postgresql
|
||||||
|
|
||||||
|
[mail]
|
||||||
|
from=events@chaostreff-backnang.de
|
||||||
|
host=mxe89f.netcup.net
|
||||||
|
port=465
|
||||||
|
user=events@chaostreff-backnang.de
|
||||||
|
tls=off
|
||||||
|
ssl=on
|
||||||
|
|
||||||
|
[redis]
|
||||||
|
location=unix:///run/valkey/valkey.sock?db=3
|
||||||
|
|
||||||
|
[celery]
|
||||||
|
backend=redis+socket:///run/valkey/valkey.sock?db=4
|
||||||
|
broker=redis+socket:///run/valkey/valkey.sock?db=5
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue