diff --git a/PORT_MAP.md b/PORT_MAP.md index e9fa782..903c93a 100644 --- a/PORT_MAP.md +++ b/PORT_MAP.md @@ -30,7 +30,6 @@ Rule of thumb: keep ports below 10000 free for stuff that reserves ports. | 6379 | | redis | | 6667 | | bitlbee | | 8010 | | matrix-media-repo | -| 8020 | | mautrix-whatsapp | | 8184 | | matrix-dimension | | 11332-11334 | rspamd | rspamd | | 20000 | mx-puppet-discord | Bridge | @@ -44,6 +43,7 @@ Rule of thumb: keep ports below 10000 free for stuff that reserves ports. | 22030 | octoprint | OctoPrint Web Interface | | 22040 | miniflux | Miniflux Web Interface | | 22050 | radicale | radicale carddav and caldav server | +| 22060 | pretalx | gunicorn | | 22999 | nginx | stub_status | ## UDP diff --git a/bundles/pretalx/files/pretalx-web.service b/bundles/pretalx/files/pretalx-web.service index aa43278..f789ddb 100644 --- a/bundles/pretalx/files/pretalx-web.service +++ b/bundles/pretalx/files/pretalx-web.service @@ -7,7 +7,7 @@ User=pretalx Group=pretalx Environment=PRETALX_CONFIG_FILE=/opt/pretalx/pretalx.cfg WorkingDirectory=/opt/pretalx/src/src -ExecStart=/opt/pretalx/venv/bin/gunicorn pretalx.wsgi --name pretalx --workers 4 --max-requests 1200 --max-requests-jitter 50 --log-level=info --bind=127.0.0.1:8345 +ExecStart=/opt/pretalx/venv/bin/gunicorn pretalx.wsgi --name pretalx --workers 4 --max-requests 1200 --max-requests-jitter 50 --log-level=info --bind=127.0.0.1:22060 Restart=on-failure [Install] diff --git a/nodes/voc/pretalx.py b/nodes/voc/pretalx.py index 58e2f46..84d180b 100644 --- a/nodes/voc/pretalx.py +++ b/nodes/voc/pretalx.py @@ -28,7 +28,7 @@ nodes['voc.pretalx'] = { 'domain': 'pretalx.c3voc.de', 'proxy': { '/': { - 'target': 'http://127.0.0.1:8345/', + 'target': 'http://127.0.0.1:22060/', }, }, 'extras': True,