123456789101112131415161718192021 |
- # Copyright Materialize, Inc. and contributors. All rights reserved.
- #
- # Use of this software is governed by the Business Source License
- # included in the LICENSE file at the root of this repository.
- #
- # As of the Change Date specified in that file, in accordance with
- # the Business Source License, use of this software will be governed
- # by the Apache License, Version 2.0.
- # https://www.postgresql.org/docs/13/auth-pg-hba-conf.html
- # type db user addr auth-method [auth-options]
- local all postgres trust
- local all root trust
- host all root all trust
- host all all all password
- host all no_such_user all trust
- host all no_replication all trust
- host all host all trust
- hostssl all hostssl all trust
- hostnossl all hostnossl all trust
- hostssl all certuser all cert
|