Skip to content

Commit 5125bb1

Browse files
authored
fix: X-Frame-Options can only be DENY or SAMEORIGIN these days (ietf-tools#3634)
1 parent 646b7e5 commit 5125bb1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ def skip_unreadable_post(record):
326326
# ------------------------------------------------------------------------
327327

328328

329-
X_FRAME_OPTIONS = 'ALLOW-FROM ietf.org *.ietf.org meetecho.com *.meetecho.com gather.town *.gather.town'
329+
X_FRAME_OPTIONS = 'SAMEORIGIN'
330330
CSRF_TRUSTED_ORIGINS = ['ietf.org', '*.ietf.org', 'meetecho.com', '*.meetecho.com', 'gather.town', '*.gather.town', ]
331331
CSRF_COOKIE_SAMESITE = 'None'
332332
CSRF_COOKIE_SECURE = True

0 commit comments

Comments
 (0)