Compare commits

..

2 commits

Author SHA256 Message Date
7286792a7b
trust proxy 2026-02-16 14:06:46 +01:00
root
f4348565bf
expose ports correctly 2026-02-16 14:05:59 +01:00
3 changed files with 11 additions and 3 deletions

2
.gitignore vendored
View file

@ -1,4 +1,2 @@
.env* .env*
memcached
valkey

View file

@ -4,7 +4,16 @@ services:
depends_on: [memcached, valkey] depends_on: [memcached, valkey]
restart: always restart: always
ports: ports:
- 127.0.0.1:1337:80 - name: web-v6
target: 80
published: 80
host_ip: "[::]"
app_protocol: http
- name: web-v4
target: 80
published: 80
host_ip: "0.0.0.0"
app_protocol: http
volumes: volumes:
- ./pretix.cfg:/etc/pretix/pretix.cfg - ./pretix.cfg:/etc/pretix/pretix.cfg
- /var/run/postgresql:/run/postgresql - /var/run/postgresql:/run/postgresql

View file

@ -6,6 +6,7 @@ datadir=/data
plugins_default=pretix.plugins.sendmail,pretix.plugins.statistics plugins_default=pretix.plugins.sendmail,pretix.plugins.statistics
cookie_domain=.tickets.ctbk.de cookie_domain=.tickets.ctbk.de
registration=Off registration=Off
trust_x_forwarded_for=on
[locale] [locale]
default=en default=en
timezone=UTC timezone=UTC