Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Containers/talk-recording/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM python:3.14.7-alpine3.24
COPY --chmod=775 start.sh /start.sh
COPY --chmod=775 healthcheck.sh /healthcheck.sh

ENV RECORDING_VERSION=v0.2.1
ENV RECORDING_VERSION=v0.3.0
ENV ALLOW_ALL=false \
HPB_PROTOCOL=https \
NC_PROTOCOL=https \
Expand Down
19 changes: 14 additions & 5 deletions Containers/talk-recording/recording.conf
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@
# Overridable by backend.
#directory = /tmp

# Size in bytes of each chunk used when uploading a recording to the backend
# with the chunked upload API.
# Overridable by backend.
#uploadchunksize = 10485760

# Backend configurations as defined in the "[backend]" section above. The
# section names must match the ids used in "backends" above.
#[backend-id]
Expand Down Expand Up @@ -147,7 +152,9 @@
# 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.
# explicitly set. The driver must be explicitly set if Selenium Manager is not
# available either in the system for any reason, even if the architecture is
# compatible.
#driverPath =

# Path to the browser executable to use for recordings.
Expand All @@ -157,13 +164,15 @@
# 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.
# Linux on arm64/aarch64); in those architectures (or if Selenium Manager is not
# available in the system for any reason, even if the architecture is
# compatible) 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".
# Leave commented to only allow access from "127.0.0.1", "::1" and
# "::ffff:127.0.0.1".
#allowed_ips =