Sha256: e97eea3a560cd05159461681f2b9cf1ed03147cc6fedb66de5a7617cc6a2d415

Contents?: true

Size: 1.38 KB

Versions: 23

Compression:

Stored size: 1.38 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 %}
# {{connection.comment}}
{{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 %}
# {{connection.comment}}
{{connection.type}}  {{connection.database}}  {{connection.user}}  {{connection.address}}  {{connection.method}}
{% endfor %}

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
taperole-1.3.6 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.3.5 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.3.4 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.3.3 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.3.2 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.3.1 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.3.0 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.2.8 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.2.7 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.2.6 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.2.5 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.2.4 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.2.3 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.2.2 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.2.1 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.2.0 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.1.5 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.1.4 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.1.3 vendor/ANXS.postgresql/templates/pg_hba.conf.j2
taperole-1.1.2 vendor/ANXS.postgresql/templates/pg_hba.conf.j2