postgres-config.yaml 566 B

123456789101112131415161718192021
  1. # Configuration file used for testing the 'synapse_port_db' script.
  2. # Tells the script to connect to the postgresql database that will be available in the
  3. # CI's Docker setup at the point where this file is considered.
  4. server_name: "localhost:8800"
  5. signing_key_path: "/src/.buildkite/test.signing.key"
  6. report_stats: false
  7. database:
  8. name: "psycopg2"
  9. args:
  10. user: postgres
  11. host: postgres
  12. password: postgres
  13. database: synapse
  14. # Suppress the key server warning.
  15. trusted_key_servers:
  16. - server_name: "matrix.org"
  17. suppress_key_server_warning: true