Skip to content

Commit

Permalink
fix(k8s): correct DJANGO_ALLOWED_HOSTS
Browse files Browse the repository at this point in the history
  • Loading branch information
themightychris committed May 10, 2023
1 parent 746deb6 commit 4e59856
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/django/thirdplaces/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True

ALLOWED_HOSTS = os.environ.get('DJANGO_ALLOWED_HOST').split(',')
ALLOWED_HOSTS = os.environ.get('DJANGO_ALLOWED_HOSTS').split(',')


# Application definition
Expand Down

0 comments on commit 4e59856

Please sign in to comment.