♻️(back) exclude /admin from CSP rules
We have to exclude the /admin prefix to allow loading static files when the django admin is used.
This commit is contained in:
@@ -730,7 +730,7 @@ class Base(Configuration):
|
|||||||
# See https://content-security-policy.com/ for more information.
|
# See https://content-security-policy.com/ for more information.
|
||||||
CONTENT_SECURITY_POLICY = {
|
CONTENT_SECURITY_POLICY = {
|
||||||
"EXCLUDE_URL_PREFIXES": values.ListValue(
|
"EXCLUDE_URL_PREFIXES": values.ListValue(
|
||||||
[],
|
["/admin"],
|
||||||
environ_name="CONTENT_SECURITY_POLICY_EXCLUDE_URL_PREFIXES",
|
environ_name="CONTENT_SECURITY_POLICY_EXCLUDE_URL_PREFIXES",
|
||||||
environ_prefix=None,
|
environ_prefix=None,
|
||||||
),
|
),
|
||||||
|
|||||||
Reference in New Issue
Block a user