diff --git a/livesupport/doc/install.html b/livesupport/doc/install.html index cf5c9bd4a..6c8de974c 100644 --- a/livesupport/doc/install.html +++ b/livesupport/doc/install.html @@ -13,7 +13,7 @@ Development Loan Fund, under the GNU GPL.

Scope

@@ -134,10 +134,12 @@ to following line:
tcpip_socket = true

and also edit pg_hba.conf (usually /var/lib/postgres/data/pg_hba.conf) -to include the following line, before any other lines related to access -through localhost:
+to include the following three lines, before any other 'host' or 'local' +lines:

-
host    all         all         127.0.0.1         255.255.255.255   password

+
host    all      all      127.0.0.1      255.255.255.255   password
+local   all      postgres                                  ident sameuser
+local   all      all                                       password

These changes will make sure that the PostgreSQL database is accessible via TCP/IP from localhost.

Web server