What the issue means
A missing Permissions-Policy header means browser features are not explicitly limited for your pages.
Security fix guide
A missing Permissions-Policy header means browser features are not explicitly limited for your pages.
Run Full Website Security ScanA missing Permissions-Policy header means browser features are not explicitly limited for your pages.
Permissions-Policy can reduce unnecessary access to camera, microphone, geolocation, payment, and other browser features.
Inspect response headers for Permissions-Policy.
Disable features your application does not need and allow only trusted origins for required features.
add_header Permissions-Policy "camera=(), microphone=(), geolocation=()" always;Header always set Permissions-Policy "camera=(), microphone=(), geolocation=()"headers: async () => [{ source: "/(.*)", headers: [{ key: "Permissions-Policy", value: "camera=(), microphone=(), geolocation=()" }] }]Use an edge response header rule to set Permissions-Policy.