mirror of
https://github.com/zulip/zulip.git
synced 2025-11-17 20:41:46 +00:00
Fix postgres configuration to use local socket.
(imported from commit 1835e712b2fe4578cf6381891844bb3abe2b767e)
This commit is contained in:
@@ -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,
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user