mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-05 20:42:54 +00:00
This makes it possible to enable authentication only for the mgmt HTTP API or the compute API. The HTTP API doesn't need to be directly accessible from compute nodes, and it can be secured through network policies. This also allows rolling out authentication in a piecemeal fashion.
16 lines
354 B
Plaintext
16 lines
354 B
Plaintext
# Minimal neon environment with one safekeeper. This is equivalent to the built-in
|
|
# defaults that you get with no --config
|
|
[pageserver]
|
|
listen_pg_addr = '127.0.0.1:64000'
|
|
listen_http_addr = '127.0.0.1:9898'
|
|
pg_auth_type = 'Trust'
|
|
http_auth_type = 'Trust'
|
|
|
|
[[safekeepers]]
|
|
id = 1
|
|
pg_port = 5454
|
|
http_port = 7676
|
|
|
|
[broker]
|
|
listen_addr = '127.0.0.1:50051'
|