From b53e0f92f4c4b62f431acc0d2beed12d34fea225 Mon Sep 17 00:00:00 2001 From: Jocelyn Le Sage Date: Sun, 9 Feb 2025 10:18:06 -0500 Subject: [PATCH] Update to the README. --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index fde7911..4c29a77 100644 --- a/README.md +++ b/README.md @@ -534,6 +534,15 @@ server { proxy_set_header Connection $connection_upgrade; proxy_read_timeout 86400; } + + # Needed when audio support is enabled. + location /websockify-audio { + proxy_pass http://docker-firefox; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection $connection_upgrade; + proxy_read_timeout 86400; + } } ```