Git Product home page Git Product logo

jitsi-cluster-occ's Introduction

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": 00000000000,
      "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 00000000000 \
  --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

jitsi-cluster-occ's People

Contributors

n0vabyte avatar tbaka avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.