Skip to content

Commit 4e59856

Browse files
fix(k8s): correct DJANGO_ALLOWED_HOSTS
1 parent 746deb6 commit 4e59856

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/django/thirdplaces/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# SECURITY WARNING: don't run with debug turned on in production!
2727
DEBUG = True
2828

29-
ALLOWED_HOSTS = os.environ.get('DJANGO_ALLOWED_HOST').split(',')
29+
ALLOWED_HOSTS = os.environ.get('DJANGO_ALLOWED_HOSTS').split(',')
3030

3131

3232
# Application definition

0 commit comments

Comments
 (0)