Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2025
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. # Configuration file for Synapse.
  2. #
  3. # This is a YAML file: see [1] for a quick introduction. Note in particular
  4. # that *indentation is important*: all the elements of a list or dictionary
  5. # should have the same indentation.
  6. #
  7. # [1] https://docs.ansible.com/ansible/latest/reference_appendices/YAMLSyntax.html
  8. #
  9. # For more information on how to configure Synapse, including a complete accounting of
  10. # each option, go to docs/usage/configuration/config_documentation.md or
  11. # https://element-hq.github.io/synapse/latest/usage/configuration/config_documentation.html
  12. server_name: "[My URL]"
  13. enable_registration: false
  14. enable_registration_without_verification: false
  15. enable_group_creation: true
  16. pid_file: /data/homeserver.pid
  17. listeners:
  18. - port: 8008
  19. tls: false
  20. type: http
  21. x_forwarded: true
  22. resources:
  23. - names: [client, federation]
  24. compress: false
  25. database:
  26. name: psycopg2
  27. args:
  28. user: synapseuser
  29. password: synapsepass
  30. database: synapsedb
  31. host: synapse-db
  32. cp_min: 5
  33. cp_max: 10
  34. log_config: "/data/[My Server Name].log.config"
  35. media_store_path: /data/media_store
  36. registration_shared_secret: "aCca&&G9_i-rA7-yWQx-X6V*ijBAH.XMIg~HkQb6ztpLSSWdLN"
  37. report_stats: true
  38. macaroon_secret_key: "W^:^WVvK;c4@hcCx@,_R7ozzOCIKj;#zbHR+k;u=89F@K@qf~2"
  39. form_secret: ":XY+m;q9&HFUH5DJvu+VK1.on_UAGb5Q^7fH-AMlP5kjC=@aAH"
  40. signing_key_path: "/data/[My Server Name].signing.key"
  41. trusted_key_servers:
  42. - server_name: "matrix.org"
  43.  
  44.  
  45. # vim:ft=yaml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement