17 lines
371 B
YAML
17 lines
371 B
YAML
# PostgreSQL Proxy Configuration
|
|
# Maps external hostnames to internal backend servers
|
|
|
|
# Listen address and port
|
|
listen:
|
|
address: "0.0.0.0"
|
|
port: 5432
|
|
|
|
debug: true
|
|
|
|
# Hostname mappings
|
|
# External hostname -> Internal hostname and port
|
|
mappings:
|
|
- external: "mytestserver"
|
|
internal: "localhost"
|
|
- external: "mytestserver2"
|
|
internal: "deploy.deinserver.co" |