LiveSmart Server Video Installation

LiveSmart Server Video is an advanced standalone web application with video, audio, recording, screen sharing and file transfer face-to-face communication channels and integrated chat for theoretically unlimited attendees. In order for flawless work and installation please check the requirements. For detailed installation instructions please read manual and video tutorial at the bottom of this page.

LiveSmart Server Video can be legally purchased only from CodeCanyon. If you have obtained the software from another source, you face the risk of it not working properly, or to have inclusions that may harm your system.

Requirements

  • TCP ports 80 and 443 are accessible;
  • A hostname (such as sfu.example.com) for setup of a SSL certificate;
  • Node.js at least v16;
  • python version >= 3.8 with PIP;
  • PHP/MySQL recommended;
  • root access to hosting server (VPS or dedicated server);

More for server requirements can be found here.

Current release update manual

Features in the current release (1.0.15):

  • Feature requests – breakout rooms and reactions;
  • Improved UI and performance;

Get the zip file from CodeCanyon, replace folders from public/dash, public/js, public/pages, public/css and public/locales. Update files src/livesmart.js and src/Room.js files. Restart your server with pm2 restart livesmart.

Features in the previous releases:

  • Presence button and integration with Perfex CRM;
  • LiveSmart can be used to monetize your incomes;
  • Added subscriptions, plans and payments with PayPal, Stripe and Authorize.net;
  • Customers can have different look&feel, logo and design of video and dashboard panels;
  • UI changes and bug fixes;

How to enable ChatGPT

  1. Goto https://platform.openai.com/
  2. Create your account
  3. Generate your APIKey from here
  4. Update the key in src/config.js chatGPT.apiKey and set chatGPT.enabled to true
  5. Enable ChatGPT from the Configuration section in the Dashboard

Fresh installation

Installation of LiveSmart Server Video is easy and straightforward and done in several easy steps:

  • Public folder from the zip file should be in your web public folder. App folder and package.json file are outside of your web server public folder;
  • Run https://yourdomain.com/install and fill in necessary information;
  • In the root folder where is your package.json file execute in the console with root access npm install, npm install -g pm2 and then pm2 start src/livesmart.js
  • You LiveSmart is now available at https://yourdomain:9002. In order to use it without the port number at the end, add these lines to your Apache config file for your domain and restart it:

    ProxyRequests off
    SSLProxyEngine on
    SSLProxyVerify none
    SSLProxyCheckPeerCN off
    SSLProxyCheckPeerName off
    SSLProxyCheckPeerExpire off
    ProxyPreserveHost On
    <Location "/">
    Order allow,deny
    Allow from all
    ProxyPass https://localhost:9002/
    ProxyPassReverse https://localhost:9002/
    </Location>
    <Location "/dash">
    ProxyPass "!"
    Order allow,deny
    Allow from all
    </Location>
    <Location "/server">
    ProxyPass "!"
    Order allow,deny
    Allow from all
    </Location>

    or if you are using nginx webserver:

    location / {
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-NginX-Proxy true;
    proxy_pass https://localhost:9002/;
    proxy_ssl_session_reuse off;
    proxy_set_header Host $http_host;
    proxy_cache_bypass $http_upgrade;
    proxy_redirect off;
    }
    location /dash {
    }
    location /server {
    }
  • Go to https://yourdomain/dash, login with admin/admin and activate your LiveSmart instance;

Was This Article Helpful?

15
2 Comments

Leave a comment

Your email address will not be published. Required fields are marked *