Jitsi meet crashes in Docker
See original GitHub issueNow I`m trying to launch jitsi in Docker on my Macbook and check the functionality before deploying jitsi to Google cloud run.
I`m using this guide: https://jitsi.github.io/handbook/docs/devops-guide/devops-guide-docker
And however, I cannot access jitsi at https://localhost:8443
I decided to look at the logs and got an error in one of the containers: failed to initialize Lua VM in /config/nginx/nginx.conf:65
Initially nginx.conf looks like this:
user www-data;
worker_processes {{ .Env.NGINX_WORKER_PROCESSES | default "4" }};
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;
events {
worker_connections {{ .Env.NGINX_WORKER_CONNECTIONS | default "768" }};
# multi_accept on;
}
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
server_tokens off;
# server_names_hash_bucket_size 64;
# server_name_in_redirect off;
client_max_body_size 0;
resolver {{ .Env.NGINX_RESOLVER | default "127.0.0.11" }};
include /etc/nginx/mime.types;
types {
# add support for wasm MIME type, that is required by specification and it is not part of default mime.types file
application/wasm wasm;
}
default_type application/octet-stream;
##
# Logging Settings
##
access_log /dev/stdout;
error_log /dev/stderr;
##
# Gzip Settings
##
gzip on;
gzip_types text/plain text/css application/javascript application/json;
gzip_vary on;
gzip_min_length 860;
# gzip_vary on;
# gzip_proxied any;
# gzip_comp_level 6;
# gzip_buffers 16 8k;
# gzip_http_version 1.1;
# gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
##
# Virtual Host Configs
##
include /config/nginx/site-confs/*; /////// Here is something wrong, but I dont know what`s wrong with it. I have looked a lot of guides and in none of this file is changed.
}
daemon off;
Can you please tell me why there might be an error and how to solve it. Tried running on many devices but got the same result (failed to initialize Lua VM in /config/nginx/nginx.conf:65
)
Thank you very much in advance)
Issue Analytics
- State:
- Created 2 years ago
- Comments:19 (7 by maintainers)
Top Results From Across the Web
Jitsi screenshare crashes - Docker - Jitsi Community Forum ...
I am running Jitsi instance on docker. I have tested stable releases (stable-7648-4 & stable-6865), both have issues in doing screenshare.
Read more >FAQ | Jitsi Meet - GitHub Pages
You need to follow the steps detailed here. It works with two participants, but crashes or does not work properly when a third...
Read more >Newest 'jitsi-meet' Questions - Stack Overflow
I am trying to integrate Jitsi Android SDK for video Conferences on my app but it crashes as soon as I join/create a...
Read more >tiredofit/jitsi-meet - Docker Image
This is a series of Dockerfiles to build a Jitsi Meet webRTC conferencing ... Stable - Based on Debian (Alpine source included, but...
Read more >Jitsi-meet is very easy to install and to setup ... - Hacker News
There's a weird interaction between the NOFILE security limit (`ulimit -n`), Java 8, and Linux-based containers (noted on both LXC and Docker).
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Even I am facing the same issue MacBook m1
Please follow https://github.com/jitsi/docker-jitsi-meet/issues/1214