Jitsi Command Library
1. Running Jicofo
systemctl restart jicofo
2. bind-http jitsi
Check : curl http://localhost:5280/http-bind
3. Prosody
Restart: /etc/init.d/prosody start
status sudo prosodyctl status
stop prosodyctl stop
4. Uninstall Jitsi
sudo apt purge jigasi jitsi-meet jitsi-meet-web-config jitsi-meet-prosody jitsi-meet-turnserver jitsi-meet-web jicofo jitsi-videobridge2
5. Jitsi Nginx
server {
listen 443;
server_name vcon.hano.xyz;
# set the root
root /usr/share/jitsi-meet;
index index.html;
location ~ ^/([a-zA-Z0-9=\?]+)$ {
rewrite ^/(.*)$ / break;
}
location / {
ssi on;
}
location /http-bind {
proxy_pass http://localhost:5280/http-bind;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $http_host;
}
location /external_api.js {
alias /usr/share/jitsi-meet/libs/external_api.min.js;
}
location = /config.js {
alias /etc/jitsi/meet/vcon.hano.xyz-config.js;
}
ssl on;
ssl_certificate /etc/letsencrypt/live/vcon.hano.xyz/cert.pem;
ssl_certificate_key /etc/letsencrypt/live/vcon.hano.xyz/privkey.pem;
}