mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 14:36:52 +00:00
Merge pull request #6975 from nextcloud/talk-container-update
talk container update
This commit is contained in:
commit
134c3d2c70
2 changed files with 48 additions and 2 deletions
|
|
@ -4,7 +4,7 @@ FROM python:3.14.0-alpine3.22
|
||||||
COPY --chmod=775 start.sh /start.sh
|
COPY --chmod=775 start.sh /start.sh
|
||||||
COPY --chmod=775 healthcheck.sh /healthcheck.sh
|
COPY --chmod=775 healthcheck.sh /healthcheck.sh
|
||||||
|
|
||||||
ENV RECORDING_VERSION=v0.1
|
ENV RECORDING_VERSION=v0.2.0
|
||||||
ENV ALLOW_ALL=false
|
ENV ALLOW_ALL=false
|
||||||
ENV HPB_PROTOCOL=https
|
ENV HPB_PROTOCOL=https
|
||||||
ENV NC_PROTOCOL=https
|
ENV NC_PROTOCOL=https
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
# SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
||||||
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
[logs]
|
[logs]
|
||||||
# Log level based on numeric values of Python logging levels:
|
# Log level based on numeric values of Python logging levels:
|
||||||
# - Critical: 50
|
# - Critical: 50
|
||||||
|
|
@ -12,6 +14,11 @@
|
||||||
# IP and port to listen on for HTTP requests.
|
# IP and port to listen on for HTTP requests.
|
||||||
#listen = 127.0.0.1:8000
|
#listen = 127.0.0.1:8000
|
||||||
|
|
||||||
|
[app]
|
||||||
|
# Comma separated list of trusted proxies (IPs or CIDR networks) that may set
|
||||||
|
# the "X-Forwarded-For" header.
|
||||||
|
#trustedproxies =
|
||||||
|
|
||||||
[backend]
|
[backend]
|
||||||
# Allow any hostname as backend endpoint. This is extremely insecure and should
|
# Allow any hostname as backend endpoint. This is extremely insecure and should
|
||||||
# only be used during development.
|
# only be used during development.
|
||||||
|
|
@ -100,6 +107,18 @@
|
||||||
# ffmpeg. The options given here fully override the default global options.
|
# ffmpeg. The options given here fully override the default global options.
|
||||||
#common = ffmpeg -loglevel level+warning -n
|
#common = ffmpeg -loglevel level+warning -n
|
||||||
|
|
||||||
|
# The (additional) options given to ffmpeg for the audio input. The options
|
||||||
|
# given here extend the default options for the audio input, although they do
|
||||||
|
# not override them.
|
||||||
|
# Default options: '-f pulse -i {AUDIO_SOURCE}'
|
||||||
|
#inputaudio =
|
||||||
|
|
||||||
|
# The (additional) options given to ffmpeg for the video input. The options
|
||||||
|
# given here extend the default options for the video input, although they do
|
||||||
|
# not override them.
|
||||||
|
# Default options: '-f x11grab -draw_mouse 0 -video_size {WIDTH}x{HEIGHT} -i {VIDEO_SOURCE}'
|
||||||
|
#inputvideo =
|
||||||
|
|
||||||
# The options given to ffmpeg to encode the audio output. The options given here
|
# The options given to ffmpeg to encode the audio output. The options given here
|
||||||
# fully override the default options for the audio output.
|
# fully override the default options for the audio output.
|
||||||
#outputaudio = -c:a libopus
|
#outputaudio = -c:a libopus
|
||||||
|
|
@ -121,3 +140,30 @@
|
||||||
# Allowed values: firefox, chrome
|
# Allowed values: firefox, chrome
|
||||||
# Defaults to firefox
|
# Defaults to firefox
|
||||||
#browser = firefox
|
#browser = firefox
|
||||||
|
|
||||||
|
# Path to the Selenium driver to use for recordings.
|
||||||
|
# If set the driver must match the browser being used (for example,
|
||||||
|
# "/usr/bin/geckodriver" for "firefox"). If no driver is explicitly set Selenium
|
||||||
|
# Manager will try to find the right one in $PATH, downloading it as a fallback.
|
||||||
|
# Note that Selenium Manager does not work in some architectures (for example,
|
||||||
|
# Linux on arm64/aarch64), so in those architectures the driver must be
|
||||||
|
# explicitly set.
|
||||||
|
#driverPath =
|
||||||
|
|
||||||
|
# Path to the browser executable to use for recordings.
|
||||||
|
# If set the executable must match the browser being used (for example,
|
||||||
|
# "/usr/bin/firefox-esr" for "firefox"). If no executable is explicitly set
|
||||||
|
# Selenium Manager will try to find the right one in $PATH. Depending on the
|
||||||
|
# installed Selenium version if the executable is not found Selenium Manager may
|
||||||
|
# also download the browser as a fallback.
|
||||||
|
# Note that Selenium Manager does not work in some architectures (for example,
|
||||||
|
# Linux on arm64/aarch64); in those architectures the Selenium driver will try
|
||||||
|
# to find the executable, but the executable may need to be explicitly set if
|
||||||
|
# not found by the driver.
|
||||||
|
#browserPath =
|
||||||
|
|
||||||
|
[stats]
|
||||||
|
# Comma-separated list of IP addresses (or CIDR networks) that are allowed to
|
||||||
|
# access the stats endpoint.
|
||||||
|
# Leave commented to only allow access from "127.0.0.1".
|
||||||
|
#allowed_ips =
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue