fix: X-Frame-Options can only be DENY or SAMEORIGIN these days (#3634)
This commit is contained in:
parent
646b7e52ad
commit
5125bb16ef
|
@ -326,7 +326,7 @@ UTILS_LOGGER_LEVELS: Dict[str, str] = {
|
|||
# ------------------------------------------------------------------------
|
||||
|
||||
|
||||
X_FRAME_OPTIONS = 'ALLOW-FROM ietf.org *.ietf.org meetecho.com *.meetecho.com gather.town *.gather.town'
|
||||
X_FRAME_OPTIONS = 'SAMEORIGIN'
|
||||
CSRF_TRUSTED_ORIGINS = ['ietf.org', '*.ietf.org', 'meetecho.com', '*.meetecho.com', 'gather.town', '*.gather.town', ]
|
||||
CSRF_COOKIE_SAMESITE = 'None'
|
||||
CSRF_COOKIE_SECURE = True
|
||||
|
|
Loading…
Reference in a new issue