Update to the README.

This commit is contained in:
Jocelyn Le Sage 2025-02-09 10:18:06 -05:00
parent c34a1d7dba
commit b53e0f92f4

View File

@ -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;
}
}
```