Jilo Web - Jitsi logs web observer https://lindeas.com/jilo/
 
 
 
Go to file
Yasen Pramatarov d2f4850d28 Adds default avatar image 2024-09-08 14:15:08 +03:00
app Adds default avatar image 2024-09-08 14:15:08 +03:00
doc Adds users meta and rights 2024-09-07 21:49:50 +03:00
public_html Adds default avatar image 2024-09-08 14:15:08 +03:00
.gitignore Initial code, moved here from the "jilo" repo. 2024-06-28 20:05:32 +03:00
CHANGELOG.md Adds support for managing Jilo Agents 2024-09-05 01:06:38 +03:00
LICENSE Initial commit 2024-06-28 15:03:43 +00:00
README.md Prepares for releasing v0.2 2024-08-31 20:24:12 +03:00
TODO.md Cleans up html code from models and controllers. 2024-07-29 16:50:16 +03:00
license-bootstrap Added jquery license 2024-07-25 19:49:10 +03:00
license-jquery Added jquery license 2024-07-25 19:49:10 +03:00

README.md

Jilo Web

overview

Jilo Web is a PHP web interface to Jilo (JItsi Logs Observer).

To have a working installation, in addition to the code here you need a jilo database file, generated by Jilo.

The webpage for this project is https://lindeas.com/jilo. There you will find information about both Jilo and Jilo Web.

The main git repo of Jilo Web is:

It is mirrored at:

You can use any of these git repos to get the program.

You are welcome to send feedback with issues, comments and pull requests to a git mirror you prefer.

demo

To see a demo install, go to https://work.lindeas.com/jilo-web-demo/

version

Current version: 0.2 released on 2024-08-31

license

This project is licensed under the GNU General Public License version 2 (GPL-2.0). See LICENSE file.

Bootstrap is used in this project and is licensed under the MIT License. See license-bootstrap file.

JQuery is used in this project and is licensed under the MIT License. See license-jquery file.

requirements

  • web server (deb: apache | nginx)
  • php support in the web server (deb: php-fpm | libapache2-mod-php)
  • pdo and pdo_sqlite support in php (deb: php-db, php-sqlite3) uncomment in php.ini: ;extension=pdo_sqlite

installation

You can install it in the following ways:

  • download the latest release from the "Releases" section here
tar -xzf jilo-web_*.tgz
cd jilo-web/doc/
./install.sh
  • clone the git repo:
git clone https://github.com/lindeas/jilo-web.git
cd jilo-web
./install.sh
  • DEB and RPM packages are planned, but not yet available. There are experimental build scripts in "packaging" folder.

config

  • edit jilo-web.conf.php and set all the variables correctly
  • "sqlite_file" is the sqlite db file for jilo-web itself, it goes to app/jilo-web.db, create it with
cd app
cat ../doc/jilo-web.schema | sqlite3 jilo-web.db
  • "jilo_database" is the sqlite db file for jilo, with data from the Jitsi logs

database

The database is an SQLite file. You also need the sqlite db from jilo (mysql/mariadb support is planned, but not yet available).