Revert "Adjust the sqlalchemy url, we need to use the outside IP address to get in"

This reverts commit 039eceae55.
This commit is contained in:
Pierre-Yves Chibon 2021-01-20 15:36:46 +01:00
parent 039eceae55
commit 8f6abb28ce

View file

@ -8,7 +8,7 @@ config = {
# expect the amount of data it generates to grow pretty steadily over time
# and we don't want *read* operations on that database to slow down all our
# other apps.
'datanommer.sqlalchemy.url': 'postgresql://{{ datanommer_user }}:{{ datanommer_password }}@100.26.18.234:5432/datanommer',
'datanommer.sqlalchemy.url': 'postgresql://{{ datanommer_user }}:{{ datanommer_password }}@localhost/datanommer',
# Only allow ajax/websockets connections back to our domains.
# https://github.com/fedora-infra/datagrepper/pull/192