diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
index 5712d55..9913b21 100644
a
|
b
|
your database connection settings.
|
220 | 220 | SQLite). |
221 | 221 | |
222 | 222 | * :setting:`HOST` -- The host your database is on. Leave this as |
223 | | an empty string if your database server is on the same physical |
224 | | machine (not used for SQLite). |
| 223 | an empty string (or possibly ``127.0.0.1``) if your database server is on the |
| 224 | same physical machine (not used for SQLite). See :setting:`HOST` for details. |
225 | 225 | |
226 | 226 | If you're new to databases, we recommend simply using SQLite by setting |
227 | 227 | :setting:`ENGINE` to ``'django.db.backends.sqlite3'`` and :setting:`NAME` to |
diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt
index 946d0f4..3a52f83 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 | | PostgreSQL connection settings |
37 | | ------------------------------ |
38 | | |
39 | | By default (empty :setting:`HOST`), the connection to the database is done |
40 | | through UNIX domain sockets ('local' lines in pg_hba.conf). If you want to |
41 | | connect through TCP sockets, set :setting:`HOST` to 'localhost' or '127.0.0.1' |
42 | | ('host' lines in pg_hba.conf). On Windows, you should always define |
43 | | :setting:`HOST`, as UNIX domain sockets are not available. |
44 | | |
45 | 36 | Optimizing PostgreSQL's configuration |
46 | 37 | ------------------------------------- |
47 | 38 | |
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
index bf0a1e5..b4b7e7d 100644
a
|
b
|
MySQL will connect via a Unix socket to the specified socket. For example::
|
431 | 431 | If you're using MySQL and this value *doesn't* start with a forward slash, then |
432 | 432 | this value is assumed to be the host. |
433 | 433 | |
434 | | If you're using PostgreSQL, an empty string means to use a Unix domain socket |
435 | | for the connection, rather than a network connection to localhost. If you |
436 | | explicitly need to use a TCP/IP connection on the local machine with |
437 | | PostgreSQL, specify ``localhost`` here. |
| 434 | If you're using PostgreSQL, by default (empty :setting:`HOST`), the connection |
| 435 | to the database is done through UNIX domain sockets ('local' lines in |
| 436 | ``pg_hba.conf``). If you want to connect through TCP sockets, set |
| 437 | :setting:`HOST` to 'localhost' or '127.0.0.1' ('host' lines in ``pg_hba.conf``). |
| 438 | On Windows, you should always define :setting:`HOST`, as UNIX domain sockets |
| 439 | are not available. |
438 | 440 | |
439 | 441 | .. setting:: NAME |
440 | 442 | |