mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 14:36:52 +00:00
Merge pull request #6760 from nextcloud/talk-container-update
Some checks failed
Codespell / Check spelling (push) Waiting to run
Docker Lint / docker-lint (push) Waiting to run
Lint php / php-lint (push) Waiting to run
Lint php / php-lint-summary (push) Blocked by required conditions
PHP Deprecation Detector / PHP Deprecation Detector (push) Waiting to run
Static analysis / static-psalm-analysis (push) Waiting to run
Validate community containers / Validate community containers (push) Has been cancelled
Helm Chart Releaser / release (push) Has been cancelled
Json Validator / Json Validator (push) Has been cancelled
Shellcheck / Check Shell (push) Has been cancelled
Twig Lint / twig-lint (push) Has been cancelled
Some checks failed
Codespell / Check spelling (push) Waiting to run
Docker Lint / docker-lint (push) Waiting to run
Lint php / php-lint (push) Waiting to run
Lint php / php-lint-summary (push) Blocked by required conditions
PHP Deprecation Detector / PHP Deprecation Detector (push) Waiting to run
Static analysis / static-psalm-analysis (push) Waiting to run
Validate community containers / Validate community containers (push) Has been cancelled
Helm Chart Releaser / release (push) Has been cancelled
Json Validator / Json Validator (push) Has been cancelled
Shellcheck / Check Shell (push) Has been cancelled
Twig Lint / twig-lint (push) Has been cancelled
talk container update
This commit is contained in:
commit
51b32578a2
2 changed files with 16 additions and 8 deletions
|
|
@ -84,7 +84,8 @@ internalsecret = the-shared-secret-for-internal-clients
|
||||||
# For backend type "etcd":
|
# For backend type "etcd":
|
||||||
# Key prefix of backend entries. All keys below will be watched and assumed to
|
# Key prefix of backend entries. All keys below will be watched and assumed to
|
||||||
# contain a JSON document with the following entries:
|
# contain a JSON document with the following entries:
|
||||||
# - "url": Url of the Nextcloud instance.
|
# - "urls": List of urls of the Nextcloud instance.
|
||||||
|
# - "url": Url of the Nextcloud instance (deprecated).
|
||||||
# - "secret": Shared secret for requests from and to the backend servers.
|
# - "secret": Shared secret for requests from and to the backend servers.
|
||||||
#
|
#
|
||||||
# Additional optional entries:
|
# Additional optional entries:
|
||||||
|
|
@ -93,8 +94,8 @@ internalsecret = the-shared-secret-for-internal-clients
|
||||||
# - "sessionlimit": Number of sessions that are allowed to connect.
|
# - "sessionlimit": Number of sessions that are allowed to connect.
|
||||||
#
|
#
|
||||||
# Example:
|
# Example:
|
||||||
# "/signaling/backend/one" -> {"url": "https://nextcloud.domain1.invalid", ...}
|
# "/signaling/backend/one" -> {"urls": ["https://nextcloud.domain1.invalid"], ...}
|
||||||
# "/signaling/backend/two" -> {"url": "https://domain2.invalid/nextcloud", ...}
|
# "/signaling/backend/two" -> {"urls": ["https://domain2.invalid/nextcloud"], ...}
|
||||||
#backendprefix = /signaling/backend
|
#backendprefix = /signaling/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
|
||||||
|
|
@ -122,8 +123,8 @@ connectionsperhost = 8
|
||||||
# Backend configurations as defined in the "[backend]" section above. The
|
# Backend configurations as defined in the "[backend]" section above. The
|
||||||
# section names must match the ids used in "backends" above.
|
# section names must match the ids used in "backends" above.
|
||||||
#[backend-id]
|
#[backend-id]
|
||||||
# URL of the Nextcloud instance
|
# Comma-separated list of urls of the Nextcloud instance
|
||||||
#url = https://cloud.domain.invalid
|
#urls = https://cloud.domain.invalid
|
||||||
|
|
||||||
# Shared secret for requests from and to the backend servers. Leave empty to use
|
# Shared secret for requests from and to the backend servers. Leave empty to use
|
||||||
# the common shared secret from above.
|
# the common shared secret from above.
|
||||||
|
|
@ -143,8 +144,8 @@ connectionsperhost = 8
|
||||||
#maxscreenbitrate = 2097152
|
#maxscreenbitrate = 2097152
|
||||||
|
|
||||||
#[another-backend]
|
#[another-backend]
|
||||||
# URL of the Nextcloud instance
|
# Comma-separated list of urls of the Nextcloud instance
|
||||||
#url = https://cloud.otherdomain.invalid
|
#urls = https://cloud.otherdomain.invalid
|
||||||
|
|
||||||
# Shared secret for requests from and to the backend servers. Leave empty to use
|
# Shared secret for requests from and to the backend servers. Leave empty to use
|
||||||
# the common shared secret from above.
|
# the common shared secret from above.
|
||||||
|
|
@ -179,6 +180,13 @@ connectionsperhost = 8
|
||||||
# proxy server that is used.
|
# proxy server that is used.
|
||||||
#maxscreenbitrate = 2097152
|
#maxscreenbitrate = 2097152
|
||||||
|
|
||||||
|
# List of IP addresses / subnets that are allowed to be used by clients in
|
||||||
|
# candidates. The allowed list has preference over the blocked list below.
|
||||||
|
#allowedcandidates = 10.0.0.0/8
|
||||||
|
|
||||||
|
# List of IP addresses / subnets to filter from candidates received by clients.
|
||||||
|
#blockedcandidates = 1.2.3.0/24
|
||||||
|
|
||||||
# For type "proxy": timeout in seconds for requests to the proxy server.
|
# For type "proxy": timeout in seconds for requests to the proxy server.
|
||||||
#proxytimeout = 2
|
#proxytimeout = 2
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -98,7 +98,7 @@ connectionsperhost = 8
|
||||||
skipverify = ${SKIP_CERT_VERIFY}
|
skipverify = ${SKIP_CERT_VERIFY}
|
||||||
|
|
||||||
[backend-1]
|
[backend-1]
|
||||||
url = https://${NC_DOMAIN}
|
urls = https://${NC_DOMAIN}
|
||||||
secret = ${SIGNALING_SECRET}
|
secret = ${SIGNALING_SECRET}
|
||||||
maxstreambitrate = ${TALK_MAX_STREAM_BITRATE}
|
maxstreambitrate = ${TALK_MAX_STREAM_BITRATE}
|
||||||
maxscreenbitrate = ${TALK_MAX_SCREEN_BITRATE}
|
maxscreenbitrate = ${TALK_MAX_SCREEN_BITRATE}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue