Skip to content

Commit ddc76db

Browse files
Merge tag 'tags/stable-10133' into openshift
2 parents a784446 + de27c52 commit ddc76db

File tree

10 files changed

+45
-22
lines changed

10 files changed

+45
-22
lines changed

.github/stale.yml

-15
This file was deleted.

.github/workflows/stale.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: 'Close stale issues and PRs'
2+
on:
3+
schedule:
4+
- cron: '30 1 * * *'
5+
6+
jobs:
7+
stale:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/stale@v8
11+
with:
12+
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.'
13+
stale-pr-message: 'This PR has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.'
14+
stale-issue-label: 'stale'
15+
stale-pr-label: 'stale'
16+
exempt-issue-labels: 'confirmed'
17+
exempt-pr-labels: 'confirmed'
18+
days-before-issue-stale: 60
19+
days-before-pr-stale: 90
20+
days-before-issue-close: 10
21+
days-before-pr-close: 10

docker-compose.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3.5'
33
services:
44
# Frontend
55
web:
6-
image: jitsi/web:${JITSI_IMAGE_VERSION:-stable-10078-1}
6+
image: jitsi/web:${JITSI_IMAGE_VERSION:-stable-10133}
77
restart: ${RESTART_POLICY:-unless-stopped}
88
ports:
99
- '${HTTP_PORT}:80'
@@ -121,6 +121,7 @@ services:
121121
- LETSENCRYPT_DOMAIN
122122
- LETSENCRYPT_EMAIL
123123
- LETSENCRYPT_USE_STAGING
124+
- LETSENCRYPT_ACME_SERVER
124125
- MATOMO_ENDPOINT
125126
- MATOMO_SITE_ID
126127
- MICROSOFT_API_APP_CLIENT_ID
@@ -191,7 +192,7 @@ services:
191192

192193
# XMPP server
193194
prosody:
194-
image: jitsi/prosody:${JITSI_IMAGE_VERSION:-stable-10078-1}
195+
image: jitsi/prosody:${JITSI_IMAGE_VERSION:-stable-10133}
195196
restart: ${RESTART_POLICY:-unless-stopped}
196197
expose:
197198
- '${XMPP_PORT:-5222}'
@@ -340,7 +341,7 @@ services:
340341

341342
# Focus component
342343
jicofo:
343-
image: jitsi/jicofo:${JITSI_IMAGE_VERSION:-stable-10078-1}
344+
image: jitsi/jicofo:${JITSI_IMAGE_VERSION:-stable-10133}
344345
restart: ${RESTART_POLICY:-unless-stopped}
345346
ports:
346347
- '127.0.0.1:${JICOFO_REST_PORT:-8888}:8888'
@@ -431,7 +432,7 @@ services:
431432

432433
# Video bridge
433434
jvb:
434-
image: jitsi/jvb:${JITSI_IMAGE_VERSION:-stable-10078-1}
435+
image: jitsi/jvb:${JITSI_IMAGE_VERSION:-stable-10133}
435436
restart: ${RESTART_POLICY:-unless-stopped}
436437
ports:
437438
- '${JVB_PORT:-10000}:${JVB_PORT:-10000}/udp'

env.example

+2
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ TZ=UTC
6969
# Use the staging server (for avoiding rate limits while testing)
7070
#LETSENCRYPT_USE_STAGING=1
7171

72+
# Set ACME server. Default is zerossl, you can peek one at https://github.com/acmesh-official/acme.sh/wiki/Server
73+
#LETSENCRYPT_ACME_SERVER="letsencrypt"
7274

7375
#
7476
# Etherpad integration (for document sharing)

jibri.yml

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

33
services:
44
jibri:
5-
image: jitsi/jibri:${JITSI_IMAGE_VERSION:-stable-10078-1}
5+
image: jitsi/jibri:${JITSI_IMAGE_VERSION:-stable-10133}
66
restart: ${RESTART_POLICY:-unless-stopped}
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.5'
33
services:
44
# SIP gateway (audio)
55
jigasi:
6-
image: jitsi/jigasi:${JITSI_IMAGE_VERSION:-stable-10078-1}
6+
image: jitsi/jigasi:${JITSI_IMAGE_VERSION:-stable-10133}
77
restart: ${RESTART_POLICY:-unless-stopped}
88
ports:
99
- '${JIGASI_PORT_MIN:-20000}-${JIGASI_PORT_MAX:-20050}:${JIGASI_PORT_MIN:-20000}-${JIGASI_PORT_MAX:-20050}/udp'

prosody/rootfs/defaults/conf.d/visitors.cfg.lua

+3
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ limits = {
5151
c2s = {
5252
rate = "512kb/s";
5353
};
54+
s2sin = {
55+
rate = "512kb/s";
56+
};
5457
}
5558

5659
authentication = 'internal_hashed'

prosody/rootfs/defaults/prosody.cfg.lua

+3
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@
7272
-- (see http://prosody.im/doc/creating_accounts for info)
7373
-- Example: admins = { "[email protected]", "[email protected]" }
7474
admins = { {{ if .Env.PROSODY_ADMINS }}{{ range $index, $element := $PROSODY_ADMIN_LIST -}}{{ if $index }}, {{ end }}"{{ $element }}"{{ end }}{{ end }} }
75+
76+
component_admins_as_room_owners = true
77+
7578
-- Enable use of libevent for better performance under high load
7679
-- For more information see: http://prosody.im/doc/libevent
7780
--use_libevent = true;

transcriber.yml

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

33
services:
44
transcriber:
5-
image: jitsi/jigasi:${JITSI_IMAGE_VERSION:-stable-10078-1}
5+
image: jitsi/jigasi:${JITSI_IMAGE_VERSION:-stable-10133}
66
restart: ${RESTART_POLICY:-unless-stopped}
77
volumes:
88
- ${CONFIG}/transcriber:/config:Z

web/rootfs/usr/bin/init_jitsi_web

+8
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,18 @@ if [[ $DISABLE_HTTPS -ne 1 ]]; then
1414
if [[ $LETSENCRYPT_USE_STAGING -eq 1 ]]; then
1515
STAGING="--staging"
1616
fi
17+
18+
ACME_SERVER=""
19+
if [[ ! -z $LETSENCRYPT_ACME_SERVER ]]; then
20+
ACME_SERVER="--set-default-ca --server $LETSENCRYPT_ACME_SERVER"
21+
echo "Using custom ACME server: $LETSENCRYPT_ACME_SERVER"
22+
fi
23+
1724
export LE_WORKING_DIR="/config/acme.sh"
1825
# TODO: move away from standalone mode to webroot mode.
1926
/config/acme.sh/acme.sh \
2027
$STAGING \
28+
$ACME_SERVER \
2129
--issue \
2230
--standalone
2331
# TODO: replace s6 service logic with supervisord

0 commit comments

Comments
 (0)