fix(gateway): allow microphone access for control-ui STT (#51085)
The Permissions-Policy header blocked microphone=() for all origins, preventing the built-in STT mic button in control-ui chat from working. The Web Speech API's SpeechRecognition.start() fails silently with: 'Permissions policy violation: microphone is not allowed in this document' Change microphone=() to microphone=(self) so the gateway's own origin can request mic access while still blocking third-party iframes. Closes #51085
This commit is contained in:
parent
41eef15cdc
commit
e54c6f8334
@ -14,7 +14,7 @@ export function setDefaultSecurityHeaders(
|
||||
) {
|
||||
res.setHeader("X-Content-Type-Options", "nosniff");
|
||||
res.setHeader("Referrer-Policy", "no-referrer");
|
||||
res.setHeader("Permissions-Policy", "camera=(), microphone=(), geolocation=()");
|
||||
res.setHeader("Permissions-Policy", "camera=(), microphone=(self), geolocation=()");
|
||||
const strictTransportSecurity = opts?.strictTransportSecurity;
|
||||
if (typeof strictTransportSecurity === "string" && strictTransportSecurity.length > 0) {
|
||||
res.setHeader("Strict-Transport-Security", strictTransportSecurity);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user