├── .gitignore ├── LICENSE ├── README.md ├── doc ├── developer-guide.md └── jitas-v3.pptx ├── images ├── icon-video.png ├── jitas-connect-meeting.png ├── jitas-novnc-connect.png ├── jitas-play.png └── jitas-watch.png ├── installer └── debian-bullseye-mate └── templates └── debian-bullseye-mate ├── etc ├── apt │ └── sources.list.d │ │ └── google-chrome.list ├── dconf │ ├── db │ │ └── jitas.d │ │ │ ├── click-policy │ │ │ ├── disable-lock-screen │ │ │ ├── disable-log-out │ │ │ ├── disable-user-switching │ │ │ └── screensaver │ └── profile │ │ └── user ├── modprobe.d │ └── jitas-camera.conf ├── nginx │ └── sites-available │ │ └── jitas.conf ├── skel │ ├── .config │ │ ├── autostart │ │ │ ├── mate-power-manager.desktop │ │ │ ├── mate-screensaver.desktop │ │ │ └── nm-applet.desktop │ │ ├── jitas │ │ │ └── pre-configured-meetings │ │ ├── monitors.xml │ │ └── systemd │ │ │ └── user │ │ │ ├── audio.service │ │ │ ├── chromium-launch.service │ │ │ ├── default.target.wants │ │ │ ├── audio.service │ │ │ ├── chromium-launch.service │ │ │ └── vnc.service │ │ │ ├── video.service │ │ │ └── vnc.service │ ├── .tmux.conf │ ├── .vimrc │ ├── .zshrc │ └── Desktop │ │ ├── Private Files │ │ ├── Public Files │ │ └── connect-meeting.desktop └── systemd │ └── system │ ├── certbot.service.d │ └── override.conf │ ├── getty@tty1.service.d │ └── override.conf │ ├── websockify-secure.service │ └── websockify-unsecure.service ├── home └── jitas-shares │ ├── private │ ├── README.txt │ └── index.html │ └── public │ └── README.txt ├── root └── README-JITAS.txt ├── usr └── local │ ├── bin │ ├── audio-start │ ├── chromium-app │ ├── chromium-launch │ ├── connect-meeting │ ├── video-start │ └── vnc-start │ └── sbin │ ├── set-letsencrypt-cert │ ├── websockify-secure │ └── websockify-unsecure └── var └── www └── html └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.sw? 3 | *.log* 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/README.md -------------------------------------------------------------------------------- /doc/developer-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/doc/developer-guide.md -------------------------------------------------------------------------------- /doc/jitas-v3.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/doc/jitas-v3.pptx -------------------------------------------------------------------------------- /images/icon-video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/images/icon-video.png -------------------------------------------------------------------------------- /images/jitas-connect-meeting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/images/jitas-connect-meeting.png -------------------------------------------------------------------------------- /images/jitas-novnc-connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/images/jitas-novnc-connect.png -------------------------------------------------------------------------------- /images/jitas-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/images/jitas-play.png -------------------------------------------------------------------------------- /images/jitas-watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/images/jitas-watch.png -------------------------------------------------------------------------------- /installer/debian-bullseye-mate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/installer/debian-bullseye-mate -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/apt/sources.list.d/google-chrome.list: -------------------------------------------------------------------------------- 1 | deb [arch=amd64] https://dl.google.com/linux/chrome/deb/ stable main 2 | -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/dconf/db/jitas.d/click-policy: -------------------------------------------------------------------------------- 1 | [org/mate/caja/preferences] 2 | click-policy='single' 3 | -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/dconf/db/jitas.d/disable-lock-screen: -------------------------------------------------------------------------------- 1 | [org/mate/desktop/lockdown] 2 | disable-lock-screen=true 3 | -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/dconf/db/jitas.d/disable-log-out: -------------------------------------------------------------------------------- 1 | [org/mate/desktop/lockdown] 2 | disable-log-out=true 3 | -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/dconf/db/jitas.d/disable-user-switching: -------------------------------------------------------------------------------- 1 | [org/mate/desktop/lockdown] 2 | disable-user-switching=true 3 | -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/dconf/db/jitas.d/screensaver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/etc/dconf/db/jitas.d/screensaver -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/dconf/profile/user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/etc/dconf/profile/user -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/modprobe.d/jitas-camera.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/etc/modprobe.d/jitas-camera.conf -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/nginx/sites-available/jitas.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/etc/nginx/sites-available/jitas.conf -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/skel/.config/autostart/mate-power-manager.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/etc/skel/.config/autostart/mate-power-manager.desktop -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/skel/.config/autostart/mate-screensaver.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/etc/skel/.config/autostart/mate-screensaver.desktop -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/skel/.config/autostart/nm-applet.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/etc/skel/.config/autostart/nm-applet.desktop -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/skel/.config/jitas/pre-configured-meetings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/etc/skel/.config/jitas/pre-configured-meetings -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/skel/.config/monitors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/etc/skel/.config/monitors.xml -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/skel/.config/systemd/user/audio.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/etc/skel/.config/systemd/user/audio.service -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/skel/.config/systemd/user/chromium-launch.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/etc/skel/.config/systemd/user/chromium-launch.service -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/skel/.config/systemd/user/default.target.wants/audio.service: -------------------------------------------------------------------------------- 1 | ../audio.service -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/skel/.config/systemd/user/default.target.wants/chromium-launch.service: -------------------------------------------------------------------------------- 1 | ../chromium-launch.service -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/skel/.config/systemd/user/default.target.wants/vnc.service: -------------------------------------------------------------------------------- 1 | ../vnc.service -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/skel/.config/systemd/user/video.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/etc/skel/.config/systemd/user/video.service -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/skel/.config/systemd/user/vnc.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/etc/skel/.config/systemd/user/vnc.service -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/skel/.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/etc/skel/.tmux.conf -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/skel/.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/etc/skel/.vimrc -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/skel/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/etc/skel/.zshrc -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/skel/Desktop/Private Files: -------------------------------------------------------------------------------- 1 | /home/jitas-shares/private -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/skel/Desktop/Public Files: -------------------------------------------------------------------------------- 1 | /home/jitas-shares/public -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/skel/Desktop/connect-meeting.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/etc/skel/Desktop/connect-meeting.desktop -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/systemd/system/certbot.service.d/override.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/etc/systemd/system/certbot.service.d/override.conf -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/systemd/system/getty@tty1.service.d/override.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/etc/systemd/system/getty@tty1.service.d/override.conf -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/systemd/system/websockify-secure.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/etc/systemd/system/websockify-secure.service -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/etc/systemd/system/websockify-unsecure.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/etc/systemd/system/websockify-unsecure.service -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/home/jitas-shares/private/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/home/jitas-shares/private/README.txt -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/home/jitas-shares/private/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/home/jitas-shares/public/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/home/jitas-shares/public/README.txt -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/root/README-JITAS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/root/README-JITAS.txt -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/usr/local/bin/audio-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/usr/local/bin/audio-start -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/usr/local/bin/chromium-app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/usr/local/bin/chromium-app -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/usr/local/bin/chromium-launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/usr/local/bin/chromium-launch -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/usr/local/bin/connect-meeting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/usr/local/bin/connect-meeting -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/usr/local/bin/video-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/usr/local/bin/video-start -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/usr/local/bin/vnc-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/usr/local/bin/vnc-start -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/usr/local/sbin/set-letsencrypt-cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/usr/local/sbin/set-letsencrypt-cert -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/usr/local/sbin/websockify-secure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/usr/local/sbin/websockify-secure -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/usr/local/sbin/websockify-unsecure: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | websockify --heartbeat=30 6080 127.0.0.1:9900 4 | -------------------------------------------------------------------------------- /templates/debian-bullseye-mate/var/www/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi-contrib/jitas/HEAD/templates/debian-bullseye-mate/var/www/html/index.html --------------------------------------------------------------------------------