├── .gitignore ├── .gitlab-ci.yml ├── .python-version ├── Dockerfile ├── README.md └── ansible ├── .ansible-lint ├── .python-version ├── ansible.cfg ├── build_coturn_servers.yml ├── build_jibri_server.yml ├── build_jitsi_server.yml ├── build_videobridge_servers.yml ├── change_sec_groups.sh ├── check_health.yml ├── count_conferences.yml ├── group_vars ├── group_vars_example ├── all │ └── vars.yaml ├── coturn │ └── vars.yml ├── production │ └── vars.yml ├── test │ └── vars.yml └── videobridge │ └── vars.yml ├── host_vars ├── host_vars_example ├── bar.meet.example.com │ ├── vars.yml │ └── vault.yml ├── foo.meet.example.com │ ├── vars.yml │ └── vault.yml ├── template.meet.example.com │ ├── vars.yml │ └── vault.yml ├── videobridges.meet.example.com │ └── vars.yml └── view.example.com │ ├── vars.yaml │ └── vault.yml ├── inventory ├── inventory_example ├── production └── test ├── main.yml ├── openrc.sample ├── provision.yml ├── purge.yml ├── restart_prosody.yml ├── restart_videobridges.yml ├── roles ├── coturn │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── tasks │ │ ├── coturn.yml │ │ └── main.yml │ └── templates │ │ └── turnserver.conf.j2 ├── jibri │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── jibri-8.0-SNAPSHOT-jar-with-dependencies.jar │ ├── handlers │ │ └── main.yml │ ├── tasks │ │ ├── install.yml │ │ └── main.yml │ └── templates │ │ ├── config.json.j2 │ │ ├── remove_old_recordings.sh.j2 │ │ ├── s3cmd.cfg │ │ └── upload_streamfile.sh.j2 ├── jitsi │ ├── defaults │ │ └── main.yml │ ├── files │ │ ├── all.css │ │ ├── interface_config.js │ │ └── jitsi-meet.tar.bz2 │ ├── handlers │ │ └── main.yml │ ├── tasks │ │ ├── dynamic_vars.yml │ │ ├── jicofo.yml │ │ ├── jitsi-meet.yml │ │ ├── jitsi-videobridge.yml │ │ ├── main.yml │ │ ├── packages.yml │ │ └── prosody.yml │ └── templates │ │ ├── focus.dat.j2 │ │ ├── jicofo_config.j2 │ │ ├── jicofo_sip-communicator.properties.j2 │ │ ├── jitsi-config.j2 │ │ ├── nginx-jitsi.conf.j2 │ │ ├── prosody_config.j2 │ │ ├── prosody_global_config.j2 │ │ ├── sip-communicator.properties.j2 │ │ ├── videobridge_config.j2 │ │ └── welcomePageAdditionalContent.html.j2 ├── nginx │ ├── files │ │ ├── nginx-module-headersmore_1.17.9-1~bionic_amd64.deb │ │ ├── nginx-module-shibboleth_1.17.9-1~bionic_amd64.deb │ │ └── nginx.conf │ ├── handlers │ │ └── main.yml │ └── tasks │ │ └── main.yml ├── requirements.yml ├── shib │ ├── handlers │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── templates │ │ ├── SWITCHaaiRootCA.crt.pem.j2 │ │ ├── attribute-map.xml.j2 │ │ ├── attribute-policy.xml.j2 │ │ ├── shibboleth2.xml.j2 │ │ └── supervisor_shib.conf.j2 ├── site24x7 │ └── tasks │ │ └── main.yml └── view │ ├── defaults │ └── vars.yml │ ├── files │ └── public │ │ ├── bootstrap │ │ └── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── css │ │ └── jitsi-additions.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── contact_1.jpg │ │ ├── icons │ │ │ ├── ico_audio.png │ │ │ ├── ico_doc.png │ │ │ ├── ico_ext.png │ │ │ ├── ico_img.png │ │ │ ├── ico_pdf.png │ │ │ ├── ico_pdn.gif │ │ │ ├── ico_popup.png │ │ │ ├── ico_ppt.png │ │ │ ├── ico_rss.gif │ │ │ ├── ico_txt.png │ │ │ ├── ico_video.png │ │ │ ├── ico_xls.png │ │ │ ├── ico_xml.png │ │ │ └── ico_zip.png │ │ ├── loading.gif │ │ ├── logo.png │ │ ├── navigation_arrow_grey.png │ │ └── switch-logo-tpr.png │ │ ├── js │ │ ├── jitsi │ │ │ └── external_api.js │ │ ├── jquery-1.11.1.min.js │ │ ├── scripts_bootstrap_init.js │ │ ├── scripts_icons.js │ │ ├── scripts_treenavigation.js │ │ └── vue │ │ │ ├── vue-router.js │ │ │ └── vue.min.js │ │ └── site_icons │ │ ├── apple-touch-icon-114x114.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-144x144.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-57x57.png │ │ ├── apple-touch-icon-72x72.png │ │ ├── apple-touch-icon-76x76.png │ │ ├── apple-touch-icon.png │ │ └── favicon.ico │ ├── tasks │ └── main.yml │ └── templates │ ├── index.html.j2 │ └── nginx-view.conf.j2 ├── start_coturn_servers.yml ├── start_stream.yml └── start_videobridges.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.6.5 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM python:3-slim 2 | 3 | RUN pip install ansible-lint 4 | 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/README.md -------------------------------------------------------------------------------- /ansible/.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/.ansible-lint -------------------------------------------------------------------------------- /ansible/.python-version: -------------------------------------------------------------------------------- 1 | 3.6.5 2 | -------------------------------------------------------------------------------- /ansible/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/ansible.cfg -------------------------------------------------------------------------------- /ansible/build_coturn_servers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/build_coturn_servers.yml -------------------------------------------------------------------------------- /ansible/build_jibri_server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/build_jibri_server.yml -------------------------------------------------------------------------------- /ansible/build_jitsi_server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/build_jitsi_server.yml -------------------------------------------------------------------------------- /ansible/build_videobridge_servers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/build_videobridge_servers.yml -------------------------------------------------------------------------------- /ansible/change_sec_groups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/change_sec_groups.sh -------------------------------------------------------------------------------- /ansible/check_health.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/check_health.yml -------------------------------------------------------------------------------- /ansible/count_conferences.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/count_conferences.yml -------------------------------------------------------------------------------- /ansible/group_vars: -------------------------------------------------------------------------------- 1 | ./galaxy/jitsi-deploy-vars/group_vars -------------------------------------------------------------------------------- /ansible/group_vars_example/all/vars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/group_vars_example/all/vars.yaml -------------------------------------------------------------------------------- /ansible/group_vars_example/coturn/vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/group_vars_example/coturn/vars.yml -------------------------------------------------------------------------------- /ansible/group_vars_example/production/vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/group_vars_example/production/vars.yml -------------------------------------------------------------------------------- /ansible/group_vars_example/test/vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/group_vars_example/test/vars.yml -------------------------------------------------------------------------------- /ansible/group_vars_example/videobridge/vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/group_vars_example/videobridge/vars.yml -------------------------------------------------------------------------------- /ansible/host_vars: -------------------------------------------------------------------------------- 1 | ./galaxy/jitsi-deploy-vars/host_vars -------------------------------------------------------------------------------- /ansible/host_vars_example/bar.meet.example.com/vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/host_vars_example/bar.meet.example.com/vars.yml -------------------------------------------------------------------------------- /ansible/host_vars_example/bar.meet.example.com/vault.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/host_vars_example/bar.meet.example.com/vault.yml -------------------------------------------------------------------------------- /ansible/host_vars_example/foo.meet.example.com/vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/host_vars_example/foo.meet.example.com/vars.yml -------------------------------------------------------------------------------- /ansible/host_vars_example/foo.meet.example.com/vault.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/host_vars_example/foo.meet.example.com/vault.yml -------------------------------------------------------------------------------- /ansible/host_vars_example/template.meet.example.com/vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/host_vars_example/template.meet.example.com/vars.yml -------------------------------------------------------------------------------- /ansible/host_vars_example/template.meet.example.com/vault.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/host_vars_example/template.meet.example.com/vault.yml -------------------------------------------------------------------------------- /ansible/host_vars_example/videobridges.meet.example.com/vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/host_vars_example/videobridges.meet.example.com/vars.yml -------------------------------------------------------------------------------- /ansible/host_vars_example/view.example.com/vars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/host_vars_example/view.example.com/vars.yaml -------------------------------------------------------------------------------- /ansible/host_vars_example/view.example.com/vault.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/host_vars_example/view.example.com/vault.yml -------------------------------------------------------------------------------- /ansible/inventory: -------------------------------------------------------------------------------- 1 | ./galaxy/jitsi-deploy-vars/inventory -------------------------------------------------------------------------------- /ansible/inventory_example/production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/inventory_example/production -------------------------------------------------------------------------------- /ansible/inventory_example/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/inventory_example/test -------------------------------------------------------------------------------- /ansible/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | - import_playbook: provision.yml 3 | 4 | -------------------------------------------------------------------------------- /ansible/openrc.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/openrc.sample -------------------------------------------------------------------------------- /ansible/provision.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/provision.yml -------------------------------------------------------------------------------- /ansible/purge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/purge.yml -------------------------------------------------------------------------------- /ansible/restart_prosody.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/restart_prosody.yml -------------------------------------------------------------------------------- /ansible/restart_videobridges.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/restart_videobridges.yml -------------------------------------------------------------------------------- /ansible/roles/coturn/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/coturn/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/coturn/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/coturn/handlers/main.yml -------------------------------------------------------------------------------- /ansible/roles/coturn/tasks/coturn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/coturn/tasks/coturn.yml -------------------------------------------------------------------------------- /ansible/roles/coturn/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/coturn/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/coturn/templates/turnserver.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/coturn/templates/turnserver.conf.j2 -------------------------------------------------------------------------------- /ansible/roles/jibri/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jibri/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/jibri/files/jibri-8.0-SNAPSHOT-jar-with-dependencies.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jibri/files/jibri-8.0-SNAPSHOT-jar-with-dependencies.jar -------------------------------------------------------------------------------- /ansible/roles/jibri/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jibri/handlers/main.yml -------------------------------------------------------------------------------- /ansible/roles/jibri/tasks/install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jibri/tasks/install.yml -------------------------------------------------------------------------------- /ansible/roles/jibri/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jibri/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/jibri/templates/config.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jibri/templates/config.json.j2 -------------------------------------------------------------------------------- /ansible/roles/jibri/templates/remove_old_recordings.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jibri/templates/remove_old_recordings.sh.j2 -------------------------------------------------------------------------------- /ansible/roles/jibri/templates/s3cmd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jibri/templates/s3cmd.cfg -------------------------------------------------------------------------------- /ansible/roles/jibri/templates/upload_streamfile.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jibri/templates/upload_streamfile.sh.j2 -------------------------------------------------------------------------------- /ansible/roles/jitsi/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jitsi/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/jitsi/files/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jitsi/files/all.css -------------------------------------------------------------------------------- /ansible/roles/jitsi/files/interface_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jitsi/files/interface_config.js -------------------------------------------------------------------------------- /ansible/roles/jitsi/files/jitsi-meet.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jitsi/files/jitsi-meet.tar.bz2 -------------------------------------------------------------------------------- /ansible/roles/jitsi/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jitsi/handlers/main.yml -------------------------------------------------------------------------------- /ansible/roles/jitsi/tasks/dynamic_vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jitsi/tasks/dynamic_vars.yml -------------------------------------------------------------------------------- /ansible/roles/jitsi/tasks/jicofo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jitsi/tasks/jicofo.yml -------------------------------------------------------------------------------- /ansible/roles/jitsi/tasks/jitsi-meet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jitsi/tasks/jitsi-meet.yml -------------------------------------------------------------------------------- /ansible/roles/jitsi/tasks/jitsi-videobridge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jitsi/tasks/jitsi-videobridge.yml -------------------------------------------------------------------------------- /ansible/roles/jitsi/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jitsi/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/jitsi/tasks/packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jitsi/tasks/packages.yml -------------------------------------------------------------------------------- /ansible/roles/jitsi/tasks/prosody.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jitsi/tasks/prosody.yml -------------------------------------------------------------------------------- /ansible/roles/jitsi/templates/focus.dat.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jitsi/templates/focus.dat.j2 -------------------------------------------------------------------------------- /ansible/roles/jitsi/templates/jicofo_config.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jitsi/templates/jicofo_config.j2 -------------------------------------------------------------------------------- /ansible/roles/jitsi/templates/jicofo_sip-communicator.properties.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jitsi/templates/jicofo_sip-communicator.properties.j2 -------------------------------------------------------------------------------- /ansible/roles/jitsi/templates/jitsi-config.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jitsi/templates/jitsi-config.j2 -------------------------------------------------------------------------------- /ansible/roles/jitsi/templates/nginx-jitsi.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jitsi/templates/nginx-jitsi.conf.j2 -------------------------------------------------------------------------------- /ansible/roles/jitsi/templates/prosody_config.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jitsi/templates/prosody_config.j2 -------------------------------------------------------------------------------- /ansible/roles/jitsi/templates/prosody_global_config.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jitsi/templates/prosody_global_config.j2 -------------------------------------------------------------------------------- /ansible/roles/jitsi/templates/sip-communicator.properties.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jitsi/templates/sip-communicator.properties.j2 -------------------------------------------------------------------------------- /ansible/roles/jitsi/templates/videobridge_config.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jitsi/templates/videobridge_config.j2 -------------------------------------------------------------------------------- /ansible/roles/jitsi/templates/welcomePageAdditionalContent.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/jitsi/templates/welcomePageAdditionalContent.html.j2 -------------------------------------------------------------------------------- /ansible/roles/nginx/files/nginx-module-headersmore_1.17.9-1~bionic_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/nginx/files/nginx-module-headersmore_1.17.9-1~bionic_amd64.deb -------------------------------------------------------------------------------- /ansible/roles/nginx/files/nginx-module-shibboleth_1.17.9-1~bionic_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/nginx/files/nginx-module-shibboleth_1.17.9-1~bionic_amd64.deb -------------------------------------------------------------------------------- /ansible/roles/nginx/files/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/nginx/files/nginx.conf -------------------------------------------------------------------------------- /ansible/roles/nginx/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/nginx/handlers/main.yml -------------------------------------------------------------------------------- /ansible/roles/nginx/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/nginx/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/requirements.yml -------------------------------------------------------------------------------- /ansible/roles/shib/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/shib/handlers/main.yml -------------------------------------------------------------------------------- /ansible/roles/shib/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/shib/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/shib/templates/SWITCHaaiRootCA.crt.pem.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/shib/templates/SWITCHaaiRootCA.crt.pem.j2 -------------------------------------------------------------------------------- /ansible/roles/shib/templates/attribute-map.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/shib/templates/attribute-map.xml.j2 -------------------------------------------------------------------------------- /ansible/roles/shib/templates/attribute-policy.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/shib/templates/attribute-policy.xml.j2 -------------------------------------------------------------------------------- /ansible/roles/shib/templates/shibboleth2.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/shib/templates/shibboleth2.xml.j2 -------------------------------------------------------------------------------- /ansible/roles/shib/templates/supervisor_shib.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/shib/templates/supervisor_shib.conf.j2 -------------------------------------------------------------------------------- /ansible/roles/site24x7/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/site24x7/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/view/defaults/vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/defaults/vars.yml -------------------------------------------------------------------------------- /ansible/roles/view/files/public/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /ansible/roles/view/files/public/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /ansible/roles/view/files/public/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /ansible/roles/view/files/public/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /ansible/roles/view/files/public/css/jitsi-additions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/css/jitsi-additions.css -------------------------------------------------------------------------------- /ansible/roles/view/files/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/favicon.ico -------------------------------------------------------------------------------- /ansible/roles/view/files/public/images/contact_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/images/contact_1.jpg -------------------------------------------------------------------------------- /ansible/roles/view/files/public/images/icons/ico_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/images/icons/ico_audio.png -------------------------------------------------------------------------------- /ansible/roles/view/files/public/images/icons/ico_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/images/icons/ico_doc.png -------------------------------------------------------------------------------- /ansible/roles/view/files/public/images/icons/ico_ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/images/icons/ico_ext.png -------------------------------------------------------------------------------- /ansible/roles/view/files/public/images/icons/ico_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/images/icons/ico_img.png -------------------------------------------------------------------------------- /ansible/roles/view/files/public/images/icons/ico_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/images/icons/ico_pdf.png -------------------------------------------------------------------------------- /ansible/roles/view/files/public/images/icons/ico_pdn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/images/icons/ico_pdn.gif -------------------------------------------------------------------------------- /ansible/roles/view/files/public/images/icons/ico_popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/images/icons/ico_popup.png -------------------------------------------------------------------------------- /ansible/roles/view/files/public/images/icons/ico_ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/images/icons/ico_ppt.png -------------------------------------------------------------------------------- /ansible/roles/view/files/public/images/icons/ico_rss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/images/icons/ico_rss.gif -------------------------------------------------------------------------------- /ansible/roles/view/files/public/images/icons/ico_txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/images/icons/ico_txt.png -------------------------------------------------------------------------------- /ansible/roles/view/files/public/images/icons/ico_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/images/icons/ico_video.png -------------------------------------------------------------------------------- /ansible/roles/view/files/public/images/icons/ico_xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/images/icons/ico_xls.png -------------------------------------------------------------------------------- /ansible/roles/view/files/public/images/icons/ico_xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/images/icons/ico_xml.png -------------------------------------------------------------------------------- /ansible/roles/view/files/public/images/icons/ico_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/images/icons/ico_zip.png -------------------------------------------------------------------------------- /ansible/roles/view/files/public/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/images/loading.gif -------------------------------------------------------------------------------- /ansible/roles/view/files/public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/images/logo.png -------------------------------------------------------------------------------- /ansible/roles/view/files/public/images/navigation_arrow_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/images/navigation_arrow_grey.png -------------------------------------------------------------------------------- /ansible/roles/view/files/public/images/switch-logo-tpr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/images/switch-logo-tpr.png -------------------------------------------------------------------------------- /ansible/roles/view/files/public/js/jitsi/external_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/js/jitsi/external_api.js -------------------------------------------------------------------------------- /ansible/roles/view/files/public/js/jquery-1.11.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/js/jquery-1.11.1.min.js -------------------------------------------------------------------------------- /ansible/roles/view/files/public/js/scripts_bootstrap_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/js/scripts_bootstrap_init.js -------------------------------------------------------------------------------- /ansible/roles/view/files/public/js/scripts_icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/js/scripts_icons.js -------------------------------------------------------------------------------- /ansible/roles/view/files/public/js/scripts_treenavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/js/scripts_treenavigation.js -------------------------------------------------------------------------------- /ansible/roles/view/files/public/js/vue/vue-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/js/vue/vue-router.js -------------------------------------------------------------------------------- /ansible/roles/view/files/public/js/vue/vue.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/js/vue/vue.min.js -------------------------------------------------------------------------------- /ansible/roles/view/files/public/site_icons/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/site_icons/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /ansible/roles/view/files/public/site_icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/site_icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /ansible/roles/view/files/public/site_icons/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/site_icons/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /ansible/roles/view/files/public/site_icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/site_icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /ansible/roles/view/files/public/site_icons/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/site_icons/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /ansible/roles/view/files/public/site_icons/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/site_icons/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /ansible/roles/view/files/public/site_icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/site_icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /ansible/roles/view/files/public/site_icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/site_icons/apple-touch-icon.png -------------------------------------------------------------------------------- /ansible/roles/view/files/public/site_icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/files/public/site_icons/favicon.ico -------------------------------------------------------------------------------- /ansible/roles/view/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/view/templates/index.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/templates/index.html.j2 -------------------------------------------------------------------------------- /ansible/roles/view/templates/nginx-view.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/roles/view/templates/nginx-view.conf.j2 -------------------------------------------------------------------------------- /ansible/start_coturn_servers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/start_coturn_servers.yml -------------------------------------------------------------------------------- /ansible/start_stream.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/start_stream.yml -------------------------------------------------------------------------------- /ansible/start_videobridges.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switch-ch/jitsi-deploy/HEAD/ansible/start_videobridges.yml --------------------------------------------------------------------------------