Jitsi: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(Die Seite wurde neu angelegt: „= Links = = Links * https://scheible.it/jitsi-meet-server-installation/ = Installation = * Domäne einrichten vk.hamatoma.de * in /etc/hosts: 75.119.134.9 bug…“) |
|||
(2 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
Zeile 1: | Zeile 1: | ||
= Links = | = Links = | ||
* https://scheible.it/jitsi-meet-server-installation/ | * https://scheible.it/jitsi-meet-server-installation/ | ||
* Passwort einrichten: https://jitsi.github.io/handbook/docs/devops-guide/secure-domain/ | |||
= Installation = | = Installation = | ||
Zeile 33: | Zeile 34: | ||
</pre> | </pre> | ||
= Konfiguration | = Konfiguration = | ||
* /etc/systemd/system.conf | * /etc/systemd/system.conf | ||
<pre> | <pre> | ||
Zeile 39: | Zeile 40: | ||
DefaultLimitNPROC=65000 | DefaultLimitNPROC=65000 | ||
DefaultTasksMax=65000 | DefaultTasksMax=65000 | ||
</pre> | |||
== Korrektur == | |||
* /etc/jitsi/videobridge/sip-communicator.properties | |||
<pre> | |||
org.jitsi.videobridge.xmpp.user.shard.DISABLE_CERTIFICATE_VERIFICATION=true | |||
</pre> | </pre> |
Aktuelle Version vom 17. Mai 2024, 17:49 Uhr
Links[Bearbeiten]
- https://scheible.it/jitsi-meet-server-installation/
- Passwort einrichten: https://jitsi.github.io/handbook/docs/devops-guide/secure-domain/
Installation[Bearbeiten]
- Domäne einrichten vk.hamatoma.de
- in /etc/hosts: 75.119.134.9 bug.hamatoma.de vk.hamatoma.de
# Repository
curl https://download.jitsi.org/jitsi-key.gpg.key | sudo sh -c 'gpg --dearmor > /usr/share/keyrings/jitsi-keyring.gpg'
echo 'deb [signed-by=/usr/share/keyrings/jitsi-keyring.gpg] https://download.jitsi.org stable/' | sudo tee /etc/apt/sources.list.d/jitsi-stable.list > /dev/null
apt update
apt install jitsi-meet
# The domain of the current installation (e.g. meet.jitsi.com)
vk.hamatoma.de
# 1. ... 2. ... 3: Generate a self signed certificate.
3
- Dabei wird die Datei /etc/nginx/sites-available/vk.hamatoma.de.conf eingerichtet. Dort snippets/letsencrypt.conf einbinden.
... server { listen 80; server_name vk.hamatoma.de; include snippets/letsencrypt.conf; root /home/www/wiki; location / { return 301 https://$server_name$request_uri; } } ...
Konfiguration[Bearbeiten]
- /etc/systemd/system.conf
DefaultLimitNOFILE=65000 DefaultLimitNPROC=65000 DefaultTasksMax=65000
Korrektur[Bearbeiten]
- /etc/jitsi/videobridge/sip-communicator.properties
org.jitsi.videobridge.xmpp.user.shard.DISABLE_CERTIFICATE_VERIFICATION=true