mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-19 22:16:49 +00:00
talk-recording - set allow_all and skip_verify via env
Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
parent
2399728731
commit
7bb7545972
2 changed files with 5 additions and 3 deletions
|
|
@ -3,6 +3,8 @@ FROM python:3.11.4-alpine3.18
|
||||||
COPY --chmod=775 start.sh /start.sh
|
COPY --chmod=775 start.sh /start.sh
|
||||||
|
|
||||||
ENV RECORDING_VERSION v17.0.2
|
ENV RECORDING_VERSION v17.0.2
|
||||||
|
ENV ALLOW_ALL false
|
||||||
|
ENV SKIP_VERIFY false
|
||||||
|
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
apk add --no-cache \
|
apk add --no-cache \
|
||||||
|
|
|
||||||
|
|
@ -21,11 +21,11 @@ level = 30
|
||||||
listen = 0.0.0.0:1234
|
listen = 0.0.0.0:1234
|
||||||
|
|
||||||
[backend]
|
[backend]
|
||||||
allowall = false
|
allowall = ${ALLOW_ALL}
|
||||||
# TODO: remove secret below when https://github.com/nextcloud/spreed/issues/9580 is fixed
|
# TODO: remove secret below when https://github.com/nextcloud/spreed/issues/9580 is fixed
|
||||||
secret = ${RECORDING_SECRET}
|
secret = ${RECORDING_SECRET}
|
||||||
backends = backend-1
|
backends = backend-1
|
||||||
skipverify = false
|
skipverify = ${SKIP_VERIFY}
|
||||||
maxmessagesize = 1024
|
maxmessagesize = 1024
|
||||||
videowidth = 1920
|
videowidth = 1920
|
||||||
videoheight = 1080
|
videoheight = 1080
|
||||||
|
|
@ -34,7 +34,7 @@ directory = /tmp
|
||||||
[backend-1]
|
[backend-1]
|
||||||
url = https://${NC_DOMAIN}
|
url = https://${NC_DOMAIN}
|
||||||
secret = ${RECORDING_SECRET}
|
secret = ${RECORDING_SECRET}
|
||||||
skipverify = false
|
skipverify = ${SKIP_VERIFY}
|
||||||
|
|
||||||
[signaling]
|
[signaling]
|
||||||
signalings = signaling-1
|
signalings = signaling-1
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue