# HG changeset patch # User Matthew Wild # Date 1540130969 -3600 # Node ID 3d01ab6b118623584352960aa7be2b8ef55f9a00 # Parent e49660ba316107886e08304f737a7842893d5dc4 mod_http_upload_external: Fix typo/copy-paste issues in headers (thanks jonas) diff -r e49660ba3161 -r 3d01ab6b1186 mod_http_upload_external/README.markdown --- 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' ```