From 79404c875dbf20ba783c72b31111c6e2228d28a2 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Sun, 7 Aug 2022 14:38:49 -0400 Subject: begin rehighlighting of custom info in templates --- content/jitsi.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'content/jitsi.md') diff --git a/content/jitsi.md b/content/jitsi.md index aa6bab4..82246dd 100644 --- a/content/jitsi.md +++ b/content/jitsi.md @@ -61,7 +61,7 @@ I\'ll be using [certbot](/basic/certbot) and Jitsi subdomain to allow encrypted connections. ```sh -certbot --nginx certonly -d meet.example.org +certbot --nginx certonly -d {{}}meet.example.org{{}} ``` We will not create an Nginx config file for Jitsi because the Jitsi @@ -76,19 +76,19 @@ apt install jitsi-meet ``` It will ask you for your `hostname`; there you\'ll need to input the -subdomain you have just added to Nginx, like `meet.example.org`. +subdomain you have just added to Nginx, like `{{}}meet.example.org{{}}`. For the SSL certificate, choose `I want to use my own certificate`. When it ask you for the certification key and cert files, input -`/etc/letsencrypt/live/meet.example.org/privkey.pem` and -`/etc/letsencrypt/live/meet.example.org/fullchain.pem` respectively. +`/etc/letsencrypt/live/{{}}meet.example.org{{}}/privkey.pem` and +`/etc/letsencrypt/live/{{}}meet.example.org{{}}/fullchain.pem` respectively. ## Using Jitsi {{< img alt="Jitsi once installed" src="/pix/jitsi-01.webp" >}} -Jitsi can be used in a browser by then just going to `meet.example.org`. +Jitsi can be used in a browser by then just going to `{{}}meet.example.org{{}}`. Note that there are also Jitsi clients for all major platforms: @@ -118,11 +118,11 @@ database. First, we need to enable password authentication in [Prosody](/prosody). Edit -`/etc/prosody/conf.avail/meet.example.org.cfg.lua`, and locate this +`/etc/prosody/conf.avail/{{}}meet.example.org{{}}.cfg.lua`, and locate this block: ```lua -VirtualHost "meet.example.org" +VirtualHost "{{}}meet.example.org{{}}" authentication = "anonymous" ``` @@ -133,14 +133,14 @@ Then, to enable guests to login and join your chatrooms, add the following block **after** the one you just edited: ```lua -VirtualHost "guest.meet.example.org" +VirtualHost "guest.{{}}meet.example.org{{}}" authentication = "anonymous" c2s_require_encryption = false ``` ### Jitsi Meet configuration -Next, in `/etc/jitsi/meet/meet.example.org-config.js`, uncomment the +Next, in `/etc/jitsi/meet/{{}}meet.example.org{{}}-config.js`, uncomment the following line: ```js @@ -152,7 +152,7 @@ var config = { ``` And change `'guest.jitsi-meet.example.com'` to -`'guest.meet.example.org'`. +`'{{}}guest.meet.example.org{{}}'` (your Jitsi domain preceded by `meet.`). ### Jicofo configuration @@ -165,7 +165,7 @@ jicofo { authentication: { enabled: true type: XMPP - login-url: meet.example.org + login-url: {{}}meet.example.org{{}} } ``` -- cgit v1.2.3