We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a default csp to allow only internal resources but block anything else.
There is no csp by default. Deployments required to add these to traffic proxies (ingresses).
nginx add headers:
add_header X-Frame-Options SAMEORIGIN; add_header X-Content-Type-Options nosniff; add_header X-XSS-Protection "1; mode=block"; add_header Content-Security-Policy "default-src 'self' 'unsafe-inline' 'unsafe-eval' data:;";
The text was updated successfully, but these errors were encountered:
bd1445a
fixes csp for recaptcha #292
10527f0
No branches or pull requests
Describe the change
Add a default csp to allow only internal resources but block anything else.
Current situation
There is no csp by default. Deployments required to add these to traffic proxies (ingresses).
Should
nginx add headers:
The text was updated successfully, but these errors were encountered: