'unbrand' evilham's jitsi types

This commit is contained in:
fnux 2021-01-11 12:01:04 +01:00
parent f055527735
commit d3bf8512ec
No known key found for this signature in database
GPG Key ID: 4502C902C00A1E12
29 changed files with 15 additions and 16 deletions

View File

@ -1,10 +1,10 @@
cdist-type__evilham_jitsi_meet(7) cdist-type__jitsi_meet(7)
================================= =================================
NAME NAME
---- ----
cdist-type__evilham_jitsi_meet - Setup the server-side of Jitsi-Meet. cdist-type__jitsi_meet - Setup the server-side of Jitsi-Meet.
DESCRIPTION DESCRIPTION
@ -17,8 +17,8 @@ eXO's notes for installing and managing Jitsi Meet instances.
This type also sets up nginx in a way that is compatible with This type also sets up nginx in a way that is compatible with
`__letsencrypt_cert` and assumes that it will only serve Jitsi instances. `__letsencrypt_cert` and assumes that it will only serve Jitsi instances.
You will also need the `__evilham_jitsi_meet_domain` type in order to finish You will also need the `__jitsi_meet_domain` type in order to finish setting up
setting up the web frontend (including TLS certificates) and its settings. the web frontend (including TLS certificates) and its settings.
You may want to use the `files/ufw` example manifest for a `__ufw`-based You may want to use the `files/ufw` example manifest for a `__ufw`-based
firewall compatible with this type. firewall compatible with this type.
@ -60,17 +60,17 @@ EXAMPLES
.. code-block:: sh .. code-block:: sh
# Setup the firewall # Setup the firewall
. "${__global}/type/__evilham_jitsi_meet/files/ufw" . "${__global}/type/__jitsi_meet/files/ufw"
export require="__ufw" export require="__ufw"
# Setup Jitsi on this host # Setup Jitsi on this host
__evilham_jitsi_meet \ __jitsi_meet \
--turn-server "turn.exo.cat" \ --turn-server "turn.exo.cat" \
--turn-secret "WeNeedGoodSecurity" --turn-secret "WeNeedGoodSecurity"
SEE ALSO SEE ALSO
-------- --------
- `__evilham_jitsi_meet_domain` - `__jitsi_meet_domain`

View File

@ -1,10 +1,10 @@
cdist-type__evilham_jitsi_meet_domain(7) cdist-type__jitsi_meet_domain(7)
======================================== ========================================
NAME NAME
---- ----
cdist-type__evilham_jitsi_meet_domain - Setup a frontend for Jitsi-Meet. cdist-type__jitsi_meet_domain - Setup a frontend for Jitsi-Meet.
DESCRIPTION DESCRIPTION
@ -20,9 +20,8 @@ This is due to the underlying XMPP and signaling rooms being common.
There might be a way to perform tricks on the Nginx-side to avoid this, but There might be a way to perform tricks on the Nginx-side to avoid this, but
time is lacking :-). time is lacking :-).
This assumes `__evilham_jitsi_meet` has already been ran on the target host, This assumes `__jitsi_meet` has already been ran on the target host, and,
and, amongst others, that Jitsi was set up with `__target_host` as the Jitsi amongst others, that Jitsi was set up with `__target_host` as the Jitsi domain.
domain.
This type will take care of TLS settings, branding and client-side This type will take care of TLS settings, branding and client-side
configuration for Jitsi. configuration for Jitsi.
@ -73,13 +72,13 @@ video-constraints
this config's resolution value. Defaults to requesting an ideal this config's resolution value. Defaults to requesting an ideal
resolution of 720p. resolution of 720p.
It must not have a trailing comma, see `constraints` in It must not have a trailing comma, see `constraints` in
`__evilham_jitsi_meet_domain/files/config.js.sh`. `__jitsi_meet_domain/files/config.js.sh`.
branding-json branding-json
Path to a JSON file that will be served as the `brandingDataUrl`. Path to a JSON file that will be served as the `brandingDataUrl`.
For information on the format see `brandingDataUrl` in For information on the format see `brandingDataUrl` in
`__evilham_jitsi_meet_domain/files/config.js.sh`. `__jitsi_meet_domain/files/config.js.sh`.
If not set, no branding will be set up. If not set, no branding will be set up.
@ -114,7 +113,7 @@ EXAMPLES
.. code-block:: sh .. code-block:: sh
# Setup a Jitsi frontend for jitsi.exo.cat # Setup a Jitsi frontend for jitsi.exo.cat
__evilham_jitsi_meet_domain "jitsi.exo.cat" \ __jitsi_meet_domain "jitsi.exo.cat" \
--admin-email "info@exo.cat" \ --admin-email "info@exo.cat" \
--turn-server "turn.exo.cat" \ --turn-server "turn.exo.cat" \
--notice-message "Hola!" \ --notice-message "Hola!" \
@ -137,7 +136,7 @@ EXAMPLES
SEE ALSO SEE ALSO
-------- --------
- `__evilham_jitsi_meet` - `__jitsi_meet`