-
[Python] CommandError: You must set settings.ALLOWED_HOSTS if DEBUG is False.Python/Django 2021. 12. 14. 12:03
settings.py에서
DEBUG = False 일 경우
ALLOWED_HOSTS = [] 를 지정해 줘야한다
node.js의 cors와 같은 기능이다
접근제한
# settings.py DEBUG = False # 말그대로 로칼 호스트에서만 열림 ALLOWED_HOSTS = ['localhost'] # 어디서든 다 열림 ALLOWED_HOSTS = ['*']
'Python > Django' 카테고리의 다른 글
[Python] query를 list로 받아보자 request.GET.getlist() (0) 2021.12.15 [Python] Autocomplete for both Django-template and HTML (0) 2021.12.15 [Python] TypeError: 'ManyRelatedManager' object is not iterable (0) 2021.12.14 [Python] url tag 사용하기 (0) 2021.12.14 [Python] 'Specifying a namespace in include() without providing an app_name ' dj (0) 2021.12.14