Skip to content
Snippets Groups Projects
Commit 3ab72e9a authored by Tomáš Valenta's avatar Tomáš Valenta
Browse files

fix ALLOWED_HOSTS

parent 8ebb2df9
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ from .base import * ...@@ -2,7 +2,7 @@ from .base import *
DEBUG = False DEBUG = False
SECRET_KEY = env.str("SECRET_KEY") SECRET_KEY = env.str("SECRET_KEY")
ALLOWED_HOSTS = env.list("ALLOWED_HOSTS", ["*"]) ALLOWED_HOSTS = env.list("ALLOWED_HOSTS")
try: try:
from .local import * from .local import *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment