From c2d3c543b93506d12bb42ae16f934b1f29402e87 Mon Sep 17 00:00:00 2001 From: Quentin Dufour Date: Thu, 11 Feb 2021 11:54:06 +0100 Subject: [PATCH] Jitsi add missing mimetypes --- app/jitsi/integration/meet/nginx.conf | 30 +++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/app/jitsi/integration/meet/nginx.conf b/app/jitsi/integration/meet/nginx.conf index 0ee2135..16a63f9 100644 --- a/app/jitsi/integration/meet/nginx.conf +++ b/app/jitsi/integration/meet/nginx.conf @@ -4,6 +4,36 @@ error_log /dev/stderr; events {} http { + ## + # Basic Settings + ## + sendfile on; + tcp_nopush on; + tcp_nodelay on; + keepalive_timeout 65; + types_hash_max_size 2048; + + + # mimetypes, required by jitsi! + include /etc/nginx/mime.types; + default_type application/octet-stream; + + types { + application/wasm wasm; + } + + ## + # SSL Settings + ## + + ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE + ssl_prefer_server_ciphers on; + + ## + # Gzip Settings + ## + gzip on; + access_log /dev/stdout; server_names_hash_bucket_size 64;