Sha256: a9b9cd6218d1d9e0f9656e394dcd71dd98a5099411120c21f4ccd0fdb3ca3e1b

Contents?: true

Size: 1.47 KB

Versions: 13

Compression:

Stored size: 1.47 KB

Contents

# PostgreSQL Client Authentication Configuration File
# ===================================================
#
# Refer to the "Client Authentication" section in the PostgreSQL
# documentation for a complete description of this file.  A short
# synopsis follows.
#
# This file controls: which hosts are allowed to connect, how clients
# are authenticated, which PostgreSQL user names they can use, which
# databases they can access.  Records take one of these forms:
#
# local      DATABASE  USER  METHOD  [OPTIONS]
# host       DATABASE  USER  ADDRESS  METHOD  [OPTIONS]
# hostssl    DATABASE  USER  ADDRESS  METHOD  [OPTIONS]
# hostnossl  DATABASE  USER  ADDRESS  METHOD  [OPTIONS]
#
# TYPE  DATABASE        USER            ADDRESS                 METHOD

# Default:
{% for connection in postgresql_pg_hba_default %}
{% if connection.comment is defined %}
# {{connection.comment}}
{% endif %}
{{connection.type}}  {{connection.database}}  {{connection.user}}  {{connection.address}}  {{connection.method}}
{% endfor %}

# Password hosts
{% for host in postgresql_pg_hba_passwd_hosts %}
host  all  all  {{host}}  password
{% endfor %}

# Trusted hosts
{% for host in postgresql_pg_hba_trust_hosts %}
host  all  all  {{host}}  trust
{% endfor %}

# User custom
{% for connection in postgresql_pg_hba_custom %}
{% if connection.comment is defined %}
# {{connection.comment}}
{% endif %}
{{connection.type}}  {{connection.database}}  {{connection.user}}  {{connection.address}}  {{connection.method}}
{% endfor %}

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
taperole-1.7.1 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.7.0 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.6.0 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.5.5 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.5.4 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.5.3 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.5.2 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.5.1 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.5.0 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.4.3 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.4.2 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.4.1 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.4.0 vendor/ANXS.postgresql/templates/pg_hba.conf.j2