Commit 0f8b071a authored by Ilya Simonov's avatar Ilya Simonov

fix default ALLOWED_HOSTS

parent 7606c7ba
......@@ -34,7 +34,7 @@ DEBUG = env('DEBUG', default=True)
DEVELOPMENT_MODE = env('DEVELOPMENT_MODE', default=True)
ALLOWED_HOSTS = env('ALLOWED_HOSTS', default=[])
ALLOWED_HOSTS = env('ALLOWED_HOSTS', default=['*'])
# Application definition
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment