33 lines
602 B
YAML
33 lines
602 B
YAML
---
|
|
ldap_connection:
|
|
host: localhost
|
|
port: 1389
|
|
|
|
ldap_users:
|
|
base: dc=example,dc=com
|
|
filter: (&(cn=*)(sAMAccountName=*))
|
|
name_attribute: sAMAccountName
|
|
|
|
ldap_groups:
|
|
base: dc=example,dc=com
|
|
filter: (member=*)
|
|
name_attribute: cn
|
|
member_attribute: member
|
|
|
|
pg_connection:
|
|
dbname: postgres
|
|
host: localhost
|
|
port: 54321
|
|
# needed for postgres-pr:
|
|
# user: insert_your_username_here
|
|
# password:
|
|
|
|
pg_users:
|
|
filter: rolcanlogin AND NOT rolsuper
|
|
create_options: LOGIN
|
|
|
|
pg_groups:
|
|
filter: NOT rolcanlogin AND rolname!='pg_signal_backend'
|
|
create_options: NOLOGIN
|
|
grant_options:
|