|
1 | | -# PostgreSQLIdent Authentication Maps |
2 | | -# ==================================== |
| 1 | +# PostgreSQLUser Name Maps |
| 2 | +# ========================= |
3 | 3 | # |
4 | 4 | # Refer to the PostgreSQL Administrator's Guide, chapter "Client |
5 | | -# Authentication" for a complete description. A short synopsis |
6 | | -# follows. |
| 5 | +# Authentication" for a complete description. A short synopsis follows. |
7 | 6 | # |
8 | 7 | # This file controls PostgreSQL username mapping. It maps |
9 | 8 | # external user names to their corresponding |
|
20 | 19 | # PG-USERNAME. |
21 | 20 | # |
22 | 21 | # If SYSTEM-USERNAME starts with a slash (/), it will be treated as |
23 | | -# a regular expression. Up to one capture is allowed, and this will |
24 | | -# be replaced in PG-USERNAME for backslash-one (\1) if present. |
| 22 | +# a regular expression. Optionally this can contain a capture (a |
| 23 | +# parenthesized subexpression). The substring matching the capture |
| 24 | +# will be substituted for \1 (backslash-one) if present in PG-USERNAME. |
25 | 25 | # |
26 | | -# Multiple maps may be specified in this file and used # by pg_hba.conf. |
| 26 | +# Multiple maps may be specified in this file and used by pg_hba.conf. |
| 27 | +# |
| 28 | +# No map names are defined in the default configuration. If all system |
| 29 | +# user names and PostgreSQL user names are the same, you don't need |
| 30 | +# anything in this file. |
27 | 31 | # |
28 | 32 | # This file is read on server startup and when the postmaster receives |
29 | 33 | # a SIGHUP signal. If you edit the file on a running system, you have |
|
32 | 36 |
|
33 | 37 | # Put your actual configuration here |
34 | 38 | # ---------------------------------- |
35 | | -# |
36 | | -# No map names are defined in the default configuration. If all system |
37 | | -# user names and PostgreSQL user names are the same, you don't need |
38 | | -# this file. |
39 | 39 |
|
40 | 40 | # MAPNAME SYSTEM-USERNAME PG-USERNAME |