mirror of https://github.com/zulip/zulip.git
Fix postgres configuration to use local socket.
(imported from commit 1835e712b2fe4578cf6381891844bb3abe2b767e)
This commit is contained in:
parent
0ec8a7a2f1
commit
939cd864eb
|
@ -72,7 +72,8 @@ DATABASES = {"default": {
|
||||||
|
|
||||||
if ENTERPRISE:
|
if ENTERPRISE:
|
||||||
DATABASES["default"].update({
|
DATABASES["default"].update({
|
||||||
'HOST': 'localhost',
|
# Host = '' => connect through a local socket
|
||||||
|
'HOST': '',
|
||||||
'OPTIONS': {
|
'OPTIONS': {
|
||||||
'autocommit': True,
|
'autocommit': True,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue