{"id":18663950,"url":"https://github.com/ekrem-kocak/jitsi","last_synced_at":"2026-05-07T11:31:27.677Z","repository":{"id":167398653,"uuid":"612177776","full_name":"ekrem-kocak/jitsi","owner":"ekrem-kocak","description":"Jitsi Docker and Excalidraw Integration","archived":false,"fork":false,"pushed_at":"2023-05-21T12:22:44.000Z","size":294,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-18T04:37:26.406Z","etag":null,"topics":["angular","docker","excalidraw","jitsi","jitsi-meet"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ekrem-kocak.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-03-10T11:16:10.000Z","updated_at":"2024-11-23T08:53:59.000Z","dependencies_parsed_at":"2023-10-29T22:15:14.275Z","dependency_job_id":null,"html_url":"https://github.com/ekrem-kocak/jitsi","commit_stats":null,"previous_names":["ekrem-kocak/jitsi"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ekrem-kocak/jitsi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ekrem-kocak%2Fjitsi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ekrem-kocak%2Fjitsi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ekrem-kocak%2Fjitsi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ekrem-kocak%2Fjitsi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ekrem-kocak","download_url":"https://codeload.github.com/ekrem-kocak/jitsi/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ekrem-kocak%2Fjitsi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32735078,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-07T02:14:30.463Z","status":"ssl_error","status_checked_at":"2026-05-07T02:14:29.405Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angular","docker","excalidraw","jitsi","jitsi-meet"],"created_at":"2024-11-07T08:20:35.065Z","updated_at":"2026-05-07T11:31:27.657Z","avatar_url":"https://github.com/ekrem-kocak.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Jitsi Self-Hosting Guide - Docker Installation and Excalidraw Integration\n\n## Installation Steps\n\n- You can download the package from the following link: https://github.com/jitsi/docker-jitsi-meet/releases/tag/stable-8319 and extract it to a folder.\n\n![image](https://user-images.githubusercontent.com/64695572/224693374-c71fb916-eb5a-4e70-8ab2-9214d92d2c22.png)\n\n1. Create a .env file by copying and adjusting env.example: `cp env.example .env` \n2. Set strong passwords in the security section options of .env file by running the following bash script `./gen-passwords.sh`\n3. Create required `CONFIG` directories\n    - For linux:\n    \n    ```\n    mkdir -p ~/.jitsi-meet-cfg/{web,transcripts,prosody/config,prosody/prosody-plugins-custom,jicofo,jvb,jigasi,jibri}\n    \n    ```\n    \n    - For Windows:\n\n    ```\n    echo web,transcripts,prosody/config,prosody/prosody-plugins-custom,jicofo,jvb,jigasi,jibri | % { mkdir \"~/.jitsi-meet-cfg/$_\" }\n    \n    ```\n4. Open the .env file with an editor and go to the bottom line of the file.\n    ```\n    ENABLE_LOBBY=1\n    ENABLE_PREJOIN_PAGE=1\n    ENABLE_WELCOME_PAGE=1\n    DISABLE_AUDIO_LEVELS=0\n    ENABLE_NOISY_MIC_DETECTION=1\n    ENABLE_GUESTS=1\n    ENABLE_XMPP_WEBSOCKET=0\n    ENABLE_RECORDING = 1\n    ENABLE_SERVICE_RECORDING = 0\n    ENABLE_FILE_RECORDING_SHARING = 1\n    WHITEBOARD_ENABLED = 1\n    WHITEBOARD_COLLAB_SERVER_PUBLIC_URL = \"http://localhost:3001\"\n    ``` \n    - Assign the WHITEBOARD_COLLAB_SERVER_PUBLIC_URL and the port for the Excalidraw room.\n    - If you want to add additional features, you can refer to this link: https://github.com/jitsi/docker-jitsi-meet/blob/master/web/rootfs/defaults/settings-config.js.\n5. The following lines were added to the docker-compose.yml file:\n    ```\n    excalidraw:\n        image: docker.io/excalidraw/excalidraw:latest\n        environment:\n            - EXCALIDRAW_ENABLE_LIVE_COLLABORATION=true\n            - EXCALIDRAW_ALLOW_ANONYMOUS_EDITS=true\n        ports:\n            - \"5000:5000\"\n            \n    excalidraw-room:\n        image: docker.io/excalidraw/excalidraw-room:latest\n        environment:\n          - PORT=3001\n          - EXCALIDRAW_ROOMS__DEFAULT__NAME=example\n          - EXCALIDRAW_ROOMS__DEFAULT__VIEWS=30\n          - EXCALIDRAW_ROOMS__DEFAULT__EDITORS=30\n        ports:\n          - \"3001:3001\"\n    ```\n6. Run the command `docker-compose up -d` and Jitsi will be ready to use at http://localhost:8000/.\n\n\n### If you encounter an error due to HTTPS, you can make the following changes in Google Chrome:\n- Go to chrome://flags/#allow-insecure-localhost.\n  ![image](https://user-images.githubusercontent.com/64695572/224695480-8c0a1296-c6a2-4cc7-a10f-5b89f98f3810.png)\n- Enable this option.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fekrem-kocak%2Fjitsi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fekrem-kocak%2Fjitsi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fekrem-kocak%2Fjitsi/lists"}