Configure Django Admin for HTTP
mainTaiga is configured to work behind HTTPS by default. If you are using HTTP, you must disable secure session and CSRF cookies to access the Django Admin (/admin/).
# Add to &default-back-environment
SESSION_COOKIE_SECURE: "False"
CSRF_COOKIE_SECURE: "False"