Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

56 wiersze
2.2 KiB

  1. # =============================================================================
  2. # This is the official example config for Conduit.
  3. # If you use it for your server, you will need to adjust it to your own needs.
  4. # At the very least, change the server_name field!
  5. # =============================================================================
  6. [global]
  7. # The server_name is the pretty name of this server. It is used as a suffix for user
  8. # and room ids. Examples: matrix.org, conduit.rs
  9. # The Conduit server needs all /_matrix/ requests to be reachable at
  10. # https://your.server.name/ on port 443 (client-server) and 8448 (federation).
  11. # If that's not possible for you, you can create /.well-known files to redirect
  12. # requests. See
  13. # https://matrix.org/docs/spec/client_server/latest#get-well-known-matrix-client
  14. # and
  15. # https://matrix.org/docs/spec/server_server/r0.1.4#get-well-known-matrix-server
  16. # for more information
  17. server_name = "{{ matrix_domain }}"
  18. # This is the only directory where Conduit will save its data
  19. database_path = "/var/lib/matrix-conduit/"
  20. database_backend = "rocksdb"
  21. # The port Conduit will be running on. You need to set up a reverse proxy in
  22. # your web server (e.g. apache or nginx), so all requests to /_matrix on port
  23. # 443 and 8448 will be forwarded to the Conduit instance running on this port
  24. # Docker users: Don't change this, you'll need to map an external port to this.
  25. port = {{ matrix_conduit_port_number }}
  26. # Max size for uploads
  27. max_request_size = {{ matrix_conduit_max_request_size }}
  28. # Max number of open files for the RocksDB database
  29. rocksdb_max_open_files = {{ matrix_conduit_rocksdb_max_open_files }}
  30. # Enables registration. If set to false, no users can register on this server.
  31. allow_registration = {{ matrix_conduit_allow_registration | to_json }}
  32. allow_federation = {{ matrix_conduit_allow_federation | to_json }}
  33. # Enable the display name lightning bolt on registration.
  34. enable_lightning_bolt = {{ matrix_conduit_enable_lightning_bolt | to_json }}
  35. trusted_servers = {{ matrix_conduit_trusted_servers | to_json }}
  36. max_concurrent_requests = {{ matrix_conduit_max_concurrent_requests }}
  37. log = "info,state_res=warn,rocket=off,_=off,sled=off"
  38. address = "0.0.0.0"