Skip to content

akamai-compute-marketplace/jitsi-cluster-occ

Repository files navigation

Jitsi One-Click CLUSTER

Jitsi is a free, open source video conferencing and communication platform. It provides a secure, stable, and free alternative to popular video conferencing services. Use built-in features to limit meeting access with passwords or stream on YouTube so anyone can attend.

Our marketplace app allows you to create a Jitsi cluster that decouples Jitsi's video brige component to create a more robust video conference solution.

Software Included

Software Version Description
Jitsi latest Jitsi web frontend
JVB latest Video Conferencing Bridge
Jicofo latest Manages media sessions and loadbalances participants to JVB

Supported Distributions:

  • Ubuntu 22.04 LTS

Linode Helpers Included

Name Action
Hostname The Hostname module uses dnsdomainname -A to detect the Linode's FQDN and write to the /etc/hosts file. This defaults to the Linode's automatically assigned rDNS. To use a custom FQDN see Configure your Linode for Reverse DNS.
Update Packages The Update Packages module performs apt update and upgrade actions as root.
UFW The UFW module will utilize a list generated by linode_helpers/ufw/ufwgen.yml in the group_vars/linode/vars and enables the service.
Fail2Ban The Fail2Ban module installs, activates and enables the Fail2Ban service.

Use our API

Customers can choose to the deploy the Jitsi app through the Linode Marketplace or directly using API. Before using the commands below, you will need to create an API token or configure linode-cli on an environment.

Make sure that the following values are updated at the top of the code block before running the commands:

  • TOKEN
  • ROOT_PASS

SHELL:

export TOKEN="YOUR API TOKEN"
export ROOT_PASS="aComplexP@ssword"
export SOA_EMAIL_ADDRESS="[email protected]"
export CLUSTER_SIZE="4"
export USER_NAME="admin"
export SSHKYES="yes"
export TOKEN_PASSWORD="LINODE-API-TOKEN"


curl -H "Content-Type: application/json" \
    -H "Authorization: Bearer ${TOKEN}" \
    -X POST -d '{
      "backups_enabled": true,
      "swap_size": 512,
      "image": "linode/ubuntu2204",
      "root_pass": "${ROOT_PASS}",
      "stackscript_id": 1350733,
      "stackscript_data": {
        "disable_root": "no/yes",
        "cluster_size": "${CLUSTER_SIZE}",
        "user_name": "${USER_NAME}",
        "add_ssh_keys": "${SSHKEYS}",
        "token_password": "${TOKEN_PASSWORD}"
        "soa_email_address": "${SOA_EMAIL_ADDRESS}"
      },
      "authorized_users": [
        "myUser",
        "secondaryUser"
      ],
      "booted": true,
      "label": "linode123",
      "type": "g6-standard-2",
      "region": "us-east",
      "group": "Linode-Group"
    }'\
https://api.linode.com/v4/linode/instances

CLI:

export TOKEN="YOUR API TOKEN"
export ROOT_PASS="aComplexP@ssword"
export SOA_EMAIL_ADDRESS="[email protected]"
export CLUSTER_SIZE="4"
export USER_NAME="admin"
export SSHKYES="yes"
export TOKEN_PASSWORD="LINODE-API-TOKEN"

linode-cli linodes create \
  --label linode123 \
  --root_pass ${ROOT_PASS} \
  --booted true \
  --stackscript_id 1350733 \
  --stackscript_data '{"soa_email_address": "${SOA_EMAIL_ADDRESS}", "disable_root": "no/yes" }' \
  --region us-east \
  --type g6-standard-2 \
  --authorized_keys "ssh-rsa AAAA_valid_public_ssh_key_123456785== user@their-computer"
  --authorized_users "myUser"
  --authorized_users "secondaryUser"

Resources

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •