Browse Source

added ALLOWED_HOSTS for production settings

Radu Boncea 7 years ago
parent
commit
070ed7da88
1 changed files with 1 additions and 0 deletions
  1. 1 0
      website/settings/production.py

+ 1 - 0
website/settings/production.py

@@ -1,6 +1,7 @@
 from .base import *
 
 DEBUG = False
+ALLOWED_HOSTS = ['resinfotd.ici.ro', '127.0.0.1']
 SECRET_KEY = 'ff5k#p-jx4-l98mo5!i#p@9z@pm_!&q(g5tu)k7h#z_d)lserf'
 try:
     from .local import *