fix: Update csrf settings

This commit is contained in:
jhynsoo 2023-11-14 21:22:30 +09:00
parent 30a7f5cd3e
commit 60be2f9139

View File

@ -5,11 +5,13 @@ from .base import *
DEBUG = False
ALLOWED_HOSTS = os.environ.get("ALLOWED_HOSTS").split(" ")
CSRF_TRUSTED_ORIGINS = os.environ.get("CSRF_TRUSTED_ORIGINS").split(" ")
CORS_ALLOW_CREDENTIALS = True
CORS_ALLOWED_ORIGINS = os.environ.get("CORS_ALLOWED_ORIGINS").split(" ")
CSRF_COOKIE_DOMAIN = os.environ.get("CSRF_COOKIE_DOMAIN")
CSRF_TRUSTED_ORIGINS = os.environ.get("CSRF_TRUSTED_ORIGINS").split(" ")
# Database
# https://docs.djangoproject.com/en/4.1/ref/settings/#databases