Skip to content

Commit

Permalink
added backup host
Browse files Browse the repository at this point in the history
  • Loading branch information
jakegodsall committed Dec 5, 2024
1 parent 21f86d8 commit 8958f89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion portfolio_site/settings/production.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
)
}

ALLOWED_HOSTS = os.getenv("ALLOWED_HOSTS").split(",")
ALLOWED_HOSTS = os.getenv("ALLOWED_HOSTS", '127.0.0.1').split(",")

EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST = os.getenv('EMAIL_HOST')
Expand Down

0 comments on commit 8958f89

Please sign in to comment.