diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt
index 3a52f83..a0849e9 100644
a
|
b
|
aggregate with a database backend that falls within the affected release range.
|
33 | 33 | .. _known to be faulty: http://archives.postgresql.org/pgsql-bugs/2007-07/msg00046.php |
34 | 34 | .. _Release 8.2.5: http://www.postgresql.org/docs/devel/static/release-8-2-5.html |
35 | 35 | |
| 36 | Notes on basic PostgreSQL's configuration |
| 37 | ----------------------------------------- |
| 38 | |
| 39 | By default (empty HOST), the connection to the database is done through UNIX domain sockets ('local' lines in pg_hba.conf). If you want to connect through TCP sockets, set HOST to 'localhost' or '127.0.0.1' ('host' lines in pg_hba.conf). On Windows, you should always define HOST, as UNIX domain sockets are not available. |
| 40 | |
36 | 41 | Optimizing PostgreSQL's configuration |
37 | 42 | ------------------------------------- |
38 | 43 | |