Files
pgproxy/config.yaml
Björn Benouarets c6b269cf35 init: Initial commit
2025-12-15 14:13:43 +01:00

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"