changeset 3359:3d01ab6b1186

mod_http_upload_external: Fix typo/copy-paste issues in headers (thanks jonas<U+2019>)
author Matthew Wild <mwild1@gmail.com>
date Sun, 21 Oct 2018 15:09:29 +0100
parents e49660ba3161
children 0149954cee37
files mod_http_upload_external/README.markdown
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/mod_http_upload_external/README.markdown	Sun Oct 21 14:54:19 2018 +0100
+++ b/mod_http_upload_external/README.markdown	Sun Oct 21 15:09:29 2018 +0100
@@ -195,7 +195,7 @@
 Some browsers may also benefit from explicitly telling them not to try guessing the type of a file:
 
 ```
-X-Content-Type-Options "nosniff"
+X-Content-Type-Options: nosniff
 ```
 
 #### Security headers
@@ -204,7 +204,7 @@
 content is not understood or trusted by the upload service:
 
 ```
-Content-Security-Policy: "default-src 'none'"
-X-Content-Security-Policy: "default-src 'none'"
-X-WebKit-CSP: "default-src 'none'"
+Content-Security-Policy: default-src 'none'
+X-Content-Security-Policy: default-src 'none'
+X-WebKit-CSP: default-src 'none'
 ```