Auto commit: 2026-03-13T16:35:19.045Z

This commit is contained in:
Flatlogic Bot 2026-03-13 16:35:19 +00:00
parent bc8c102df7
commit 7b2fc4e3b2
3 changed files with 2 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 936 KiB

View File

@ -23,12 +23,12 @@ DEBUG = os.getenv("DJANGO_DEBUG", "true").lower() == "true"
ALLOWED_HOSTS = [
"127.0.0.1",
"localhost",
os.getenv("HOST_FQDN", ""),
os.getenv("HOST_FQDN", ""), "aibmm.flatlogic.app",
]
CSRF_TRUSTED_ORIGINS = [
origin for origin in [
os.getenv("HOST_FQDN", ""),
os.getenv("HOST_FQDN", ""), "aibmm.flatlogic.app",
os.getenv("CSRF_TRUSTED_ORIGIN", "")
] if origin
]