Last active
September 19, 2023 16:37
-
-
Save luizbills/0ac0627aae6bdbb6047ddb4b04c4cdb6 to your computer and use it in GitHub Desktop.
Add some security-related headers to your WordPress. You can check your headers in https://securityheaders.com/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'wp_headers', 'lpb_add_security_headers' ); | |
function lpb_add_security_headers ( $headers ) { | |
$headers['Strict-Transport-Security'] = 'max-age=31536000; includeSubDomains; preload'; | |
$headers['X-Content-Type-Options'] = 'nosniff'; | |
$headers['X-XSS-Protection'] = '1; mode=block'; | |
$headers['Content-Security-Policy'] = "default-src 'self'; connect-src *; font-src * data:; frame-src *; img-src * data:; media-src *; object-src *; script-src * 'unsafe-inline' 'unsafe-eval'; style-src * 'unsafe-inline'"; | |
return $headers; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use https://github.com/april/laboratory to generate a more apropriate
Content-Security-Policy
for your site.