postgres-config.yaml 494 B

12345678910111213141516171819
  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: ".ci/test.signing.key"
  6. report_stats: false
  7. database:
  8. name: "psycopg2"
  9. args:
  10. user: postgres
  11. host: localhost
  12. password: postgres
  13. database: synapse
  14. # Suppress the key server warning.
  15. trusted_key_servers: []