return to localhost

This commit is contained in:
alex 2019-10-25 10:33:31 +03:00
parent cd294961e0
commit 95811c7437
2 changed files with 4 additions and 3 deletions

View File

@ -159,8 +159,8 @@ DATABASES = {
},
'legacy': {
'ENGINE': 'django.db.backends.mysql',
# 'HOST': '172.23.0.1',
'HOST': 'mysql_db',
'HOST': '172.23.0.1',
# 'HOST': 'mysql_db',
'PORT': 3306,
'NAME': 'dev',
'USER': 'dev',

View File

@ -19,7 +19,8 @@ DOMAIN_URI = 'gm.id-east.ru'
# ELASTICSEARCH SETTINGS
ELASTICSEARCH_DSL = {
'default': {
'hosts': 'elasticsearch:9200'
'hosts': 'localhost:9200'
# 'hosts': 'elasticsearch:9200'
}
}