From c9ef093845ecad2e16649f9c79e4d73c579b9a6a Mon Sep 17 00:00:00 2001 From: Ed Chalstrey Date: Thu, 23 May 2024 09:35:37 +0100 Subject: [PATCH] add SECURE_CROSS_ORIGIN_OPENER_POLICY = None to settings --- seshat/settings/base.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/seshat/settings/base.py b/seshat/settings/base.py index b2d4f8a6a..4b0cb10c2 100644 --- a/seshat/settings/base.py +++ b/seshat/settings/base.py @@ -383,4 +383,6 @@ else: # TODO: find a way to specify this based on the VM: aarch64 or x86_64 # GEOS_LIBRARY_PATH = '/usr/lib/aarch64-linux-gnu/libgeos_c.so' - GEOS_LIBRARY_PATH = '/usr/lib/x86_64-linux-gnu/libgeos_c.so' \ No newline at end of file + GEOS_LIBRARY_PATH = '/usr/lib/x86_64-linux-gnu/libgeos_c.so' + +SECURE_CROSS_ORIGIN_OPENER_POLICY = None \ No newline at end of file