web: add support for wav files to nginx default

Nginx does not define a mime type for wav files by default.  This causes Firefox to refuse to load these files.
Bu adding this mime type, we can ensure that Firefox plays back all interface sounds by default.
Issue is further described in: https://github.com/jitsi/jitsi-meet/issues/11860
pull/1208/head
BinaryWizard904 2 years ago committed by GitHub
parent d804ba48c9
commit 4372717dc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      web/rootfs/defaults/nginx.conf

@ -32,6 +32,8 @@ http {
types { types {
# add support for wasm MIME type, that is required by specification and it is not part of default mime.types file # add support for wasm MIME type, that is required by specification and it is not part of default mime.types file
application/wasm wasm; application/wasm wasm;
# add support for the wav MIME type that is requried to playback wav files in Firefox.
audio/wav wav;
} }
default_type application/octet-stream; default_type application/octet-stream;

Loading…
Cancel
Save