/[adm]/puppet/modules/postgresql/templates/pg_hba.conf
ViewVC logotype

Annotation of /puppet/modules/postgresql/templates/pg_hba.conf

Parent Directory Parent Directory | Revision Log Revision Log


Revision 342 - (hide annotations) (download)
Sat Nov 20 18:02:18 2010 UTC (13 years, 5 months ago) by dmorgan
File size: 5889 byte(s)
Allow user bugs to access template1 database


1 nanardon 55 # PostgreSQL Client Authentication Configuration File
2     # ===================================================
3     #
4     # Refer to the "Client Authentication" section in the PostgreSQL
5     # documentation for a complete description of this file. A short
6     # synopsis follows.
7     #
8     # This file controls: which hosts are allowed to connect, how clients
9     # are authenticated, which PostgreSQL user names they can use, which
10     # databases they can access. Records take one of these forms:
11     #
12     # local DATABASE USER METHOD [OPTIONS]
13     # host DATABASE USER CIDR-ADDRESS METHOD [OPTIONS]
14     # hostssl DATABASE USER CIDR-ADDRESS METHOD [OPTIONS]
15     # hostnossl DATABASE USER CIDR-ADDRESS METHOD [OPTIONS]
16     #
17     # (The uppercase items must be replaced by actual values.)
18     #
19     # The first field is the connection type: "local" is a Unix-domain
20     # socket, "host" is either a plain or SSL-encrypted TCP/IP socket,
21     # "hostssl" is an SSL-encrypted TCP/IP socket, and "hostnossl" is a
22     # plain TCP/IP socket.
23     #
24     # DATABASE can be "all", "sameuser", "samerole", "replication", a
25     # database name, or a comma-separated list thereof.
26     #
27     # USER can be "all", a user name, a group name prefixed with "+", or a
28     # comma-separated list thereof. In both the DATABASE and USER fields
29     # you can also write a file name prefixed with "@" to include names
30     # from a separate file.
31     #
32     # CIDR-ADDRESS specifies the set of hosts the record matches. It is
33     # made up of an IP address and a CIDR mask that is an integer (between
34     # 0 and 32 (IPv4) or 128 (IPv6) inclusive) that specifies the number
35     # of significant bits in the mask. Alternatively, you can write an IP
36     # address and netmask in separate columns to specify the set of hosts.
37     # Instead of a CIDR-address, you can write "samehost" to match any of
38     # the server's own IP addresses, or "samenet" to match any address in
39     # any subnet that the server is directly connected to.
40     #
41     # METHOD can be "trust", "reject", "md5", "password", "gss", "sspi",
42     # "krb5", "ident", "pam", "ldap", "radius" or "cert". Note that
43     # "password" sends passwords in clear text; "md5" is preferred since
44     # it sends encrypted passwords.
45     #
46     # OPTIONS are a set of options for the authentication in the format
47     # NAME=VALUE. The available options depend on the different
48     # authentication methods -- refer to the "Client Authentication"
49     # section in the documentation for a list of which options are
50     # available for which authentication methods.
51     #
52     # Database and user names containing spaces, commas, quotes and other
53     # special characters must be quoted. Quoting one of the keywords
54     # "all", "sameuser", "samerole" or "replication" makes the name lose
55     # its special character, and just match a database or username with
56     # that name.
57     #
58     # This file is read on server startup and when the postmaster receives
59     # a SIGHUP signal. If you edit the file on a running system, you have
60     # to SIGHUP the postmaster for the changes to take effect. You can
61     # use "pg_ctl reload" to do that.
62    
63     # Put your actual configuration here
64     # ----------------------------------
65     #
66     # If you want to allow non-local connections, you need to add more
67     # "host" records. In that case you will also need to make PostgreSQL
68     # listen on a non-local interface via the listen_addresses
69     # configuration parameter, or via the -i or -h command line switches.
70    
71     # CAUTION: Configuring the system for local "trust" authentication
72     # allows any local user to connect as any PostgreSQL user, including
73     # the database superuser. If you do not trust all your local users,
74     # use another authentication method.
75    
76    
77     # TYPE DATABASE USER CIDR-ADDRESS METHOD
78 nanardon 175 # This file is in mageia svn:
79     # $Id$
80 nanardon 55
81 nanardon 64 # Nanar:
82     # This bypass global config for specific user/base
83 nanardon 187 host epoll epoll 127.0.0.1/32 md5
84 misc 209 host epoll epoll ::1/128 md5
85 nanardon 187 hostssl epoll epoll 212.85.158.146/32 md5
86     hostssl epoll epoll 2a02:2178:2:7::2/128 md5
87 nanardon 64
88 nanardon 187 host mirrors mirrors 127.0.0.1/32 md5
89 misc 209 host mirrors mirrors ::1/128 md5
90 nanardon 187 hostssl mirrors mirrors 212.85.158.146/32 md5
91     hostssl mirrors mirrors 2a02:2178:2:7::2/128 md5
92    
93     host transifex transifex 127.0.0.1/32 md5
94 misc 209 host transifex transifex ::1/128 md5
95 nanardon 187 hostssl transifex transifex 212.85.158.146/32 md5
96     hostssl transifex transifex 2a02:2178:2:7::2/128 md5
97    
98     host bugs bugs 127.0.0.1/32 md5
99 misc 209 host bugs bugs ::1/128 md5
100 nanardon 187 hostssl bugs bugs 212.85.158.146/32 md5
101     hostssl bugs bugs 2a02:2178:2:7::2/128 md5
102    
103 dmorgan 342 host template1 bugs 127.0.0.1/32 md5
104     host template1 bugs ::1/128 md5
105     hostssl template1 bugs 212.85.158.146/32 md5
106     hostssl template1 bugs 2a02:2178:2:7::2/128 md5
107    
108 dmorgan 210 host sympa sympa 127.0.0.1/32 md5
109     host sympa sympa ::1/128 md5
110     hostssl sympa sympa 212.85.158.146/32 md5
111     hostssl sympa sympa 2a02:2178:2:7::2/128 md5
112    
113 nanardon 55 # "local" is for Unix domain socket connections only
114 nanardon 174 local all all ident map=local
115 nanardon 55 # IPv4 local connections:
116 nanardon 60 host all all 127.0.0.1/32 pam
117 nanardon 55 # IPv6 local connections:
118 nanardon 60 host all all ::1/128 pam
119    
120 nanardon 61 hostssl all all 0.0.0.0/0 pam
121     hostssl all all ::0/0 pam

Properties

Name Value
svn:keywords Id

  ViewVC Help
Powered by ViewVC 1.1.30