Skip to content

Commit 176c30a

Browse files
committed
release: stable-5142-4
* 6f7b2b4 prosody: add internal domain name to default cross-domains list * ada7b95 jvb: fix check for JVB_TCP_HARVESTER_DISABLED * a7fb101 jibri: don't provide a non-existing finalizer path * d013053 jibri: add missing dependency for `kill` command * 0b25141 web: Add ENABLE_HSTS flag to disable strict-transport-security header * f856037 web: add more config options * eedac14 web: add ability to disable IPv6 * af6f3ac doc: update CHANGELOG * e3bb5c1 misc: working on latest
1 parent 6f7b2b4 commit 176c30a

File tree

4 files changed

+20
-6
lines changed

4 files changed

+20
-6
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## stable-5142-4
2+
3+
Based on stable release 5142-4.
4+
5+
* 6f7b2b4 prosody: add internal domain name to default cross-domains list
6+
* ada7b95 jvb: fix check for JVB_TCP_HARVESTER_DISABLED
7+
* a7fb101 jibri: don't provide a non-existing finalizer path
8+
* d013053 jibri: add missing dependency for `kill` command
9+
* 0b25141 web: Add ENABLE_HSTS flag to disable strict-transport-security header
10+
* f856037 web: add more config options
11+
* eedac14 web: add ability to disable IPv6
12+
* af6f3ac doc: update CHANGELOG
13+
* e3bb5c1 misc: working on latest
14+
115
## stable-5142-3
216

317
**Important:** This release should fix some update problems users found in -1 and -2 versions. The main problem observed is the introduction of XMPP WebSockets, which requires extra configuration for the /xmpp-wesocket route if a reverse proxy is used in front of this setup. Pure docker-compose installations don't need any changes.

docker-compose.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3'
33
services:
44
# Frontend
55
web:
6-
image: jitsi/web:latest
6+
image: jitsi/web:stable-5142-4
77
restart: ${RESTART_POLICY}
88
ports:
99
- '${HTTP_PORT}:80'
@@ -103,7 +103,7 @@ services:
103103

104104
# XMPP server
105105
prosody:
106-
image: jitsi/prosody:latest
106+
image: jitsi/prosody:stable-5142-4
107107
restart: ${RESTART_POLICY}
108108
expose:
109109
- '5222'
@@ -172,7 +172,7 @@ services:
172172

173173
# Focus component
174174
jicofo:
175-
image: jitsi/jicofo:latest
175+
image: jitsi/jicofo:stable-5142-4
176176
restart: ${RESTART_POLICY}
177177
volumes:
178178
- ${CONFIG}/jicofo:/config:Z
@@ -201,7 +201,7 @@ services:
201201

202202
# Video bridge
203203
jvb:
204-
image: jitsi/jvb:latest
204+
image: jitsi/jvb:stable-5142-4
205205
restart: ${RESTART_POLICY}
206206
ports:
207207
- '${JVB_PORT}:${JVB_PORT}/udp'

jibri.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22

33
services:
44
jibri:
5-
image: jitsi/jibri:latest
5+
image: jitsi/jibri:stable-5142-4
66
restart: ${RESTART_POLICY}
77
volumes:
88
- ${CONFIG}/jibri:/config:Z

jigasi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3'
33
services:
44
# SIP gateway (audio)
55
jigasi:
6-
image: jitsi/jigasi:latest
6+
image: jitsi/jigasi:stable-5142-4
77
restart: ${RESTART_POLICY}
88
ports:
99
- '${JIGASI_PORT_MIN}-${JIGASI_PORT_MAX}:${JIGASI_PORT_MIN}-${JIGASI_PORT_MAX}/udp'

0 commit comments

Comments
 (0)