question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Jitsi meet crashes in Docker

See original GitHub issue

Now 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:closed
  • Created 2 years ago
  • Comments:19 (7 by maintainers)

github_iconTop GitHub Comments

8reactions
mickyaruncommented, Aug 25, 2021

Even I am facing the same issue MacBook m1

0reactions
saghulcommented, Feb 2, 2022
Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found