mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-12-04 22:14:58 +01:00
aff0158ef7
Signed-off-by: magic_rb <magic_rb@redalder.org>
26 lines
550 B
Nix
26 lines
550 B
Nix
{logConfig}: {
|
|
server_name = "matrix.redalder.org";
|
|
report_stats = "yes";
|
|
pid_file = "/homeserver.pid";
|
|
|
|
log_config = logConfig;
|
|
|
|
trusted_key_servers = [
|
|
{
|
|
server_name = "matrix.org";
|
|
}
|
|
];
|
|
media_store_path = "/var/lib/synapse/media_store";
|
|
signing_key_path = "/var/lib/synapse/signing.key";
|
|
|
|
enable_registration = false;
|
|
enable_registration_without_verification = false;
|
|
|
|
federation_sender_instances = [
|
|
"worker-federation-sender-0"
|
|
];
|
|
instance_map.main = {
|
|
host = "localhost";
|
|
port = 9093;
|
|
};
|
|
}
|