Update web.rs

Add frame-ancestors to allow U2F to work in Chrome (and possibly Firefox) extension
This commit is contained in:
dheimerl 2018-12-15 13:23:07 -06:00 committed by GitHub
parent a335bcd682
commit 037eb0b790
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,6 +56,8 @@ impl<'r, R: Responder<'r>> Responder<'r> for WebHeaders<R> {
res.set_raw_header("X-Frame-Options", "SAMEORIGIN");
res.set_raw_header("X-Content-Type-Options", "nosniff");
res.set_raw_header("X-XSS-Protection", "1; mode=block");
res.set_raw_header("Content-Security-Policy", "frame-ancestors chrome-extension://*");
res.set_raw_header("Content-Security-Policy", "frame-ancestors moz-extension://*");
Ok(res)
},