Added some CSRF settings to make login from a meetecho iframe possible.
- Legacy-Id: 18117
This commit is contained in:
parent
92aeb2f6da
commit
ae5de75b65
|
@ -61,6 +61,10 @@ PASSWORD_HASHERS = [
|
|||
|
||||
ALLOWED_HOSTS = [".ietf.org", ".ietf.org.", "209.208.19.216", "4.31.198.44", "127.0.0.1", "localhost:8000", ]
|
||||
|
||||
X_FRAME_OPTIONS = 'ALLOW-FROM meetecho.com *.meetecho.com *.ietf.org'
|
||||
CSRF_TRUSTED_ORIGINS = ['meetecho.com', '*.meetecho.com', '*.ietf.org', ]
|
||||
CSRF_COOKIE_SAMESITE = None
|
||||
|
||||
|
||||
# Server name of the tools server
|
||||
TOOLS_SERVER = 'tools.' + IETF_DOMAIN
|
||||
|
|
Loading…
Reference in a new issue