nixos-config/config/services/synapse.nix

123 lines
3.1 KiB
Nix
Raw Normal View History

2022-06-12 15:39:15 +00:00
{
pkgs,
lib,
config,
...
}: {
2022-05-01 06:50:10 +00:00
services.matrix-synapse = {
enable = true;
settings = {
server_name = "chir.rs";
public_baseurl = "https://matrix.chir.rs/";
2022-06-12 15:39:15 +00:00
listeners = [
{
port = 8008;
tls = false;
type = "http";
x_forwarded = true;
bind_addresses = ["::1" "127.0.0.1"];
resources = [
{
names = ["client" "federation" "metrics"];
compress = false;
}
];
}
];
2022-05-01 06:50:10 +00:00
admin_contact = "mailto:lotte@chir.rs";
2022-08-19 08:20:55 +00:00
retention = {
enabled = true;
max_lifetime = "12w";
};
2022-05-01 06:50:10 +00:00
database = {
name = "psycopg2";
txn_limit = 10000;
args = {
host = "/run/postgresql";
user = "matrix-synapse";
database = "synapse";
};
};
enable_media_repo = false;
url_preview_enabled = true;
url_preview_ip_range_blacklist = [
"127.0.0.0/8"
"10.0.0.0/8"
"172.16.0.0/12"
"192.168.0.0/16"
"100.64.0.0/10"
"192.0.0.0/24"
"169.254.0.0/16"
"192.88.99.0/24"
"198.18.0.0/15"
"192.0.2.0/24"
"198.51.100.0/24"
"203.0.113.0/24"
"224.0.0.0/4"
"fe80::/10"
"fc00::/7"
"2001:db8::/32"
"ff00::/8"
"fec0::/10"
];
enable_registration = false;
app_service_config_files = [
"/var/lib/mautrix-telegram/telegram-registration.yaml"
2022-07-22 16:19:40 +00:00
#config.sops.secrets."services/synapse/discord-dev-registration.yaml".path
2022-05-01 06:50:10 +00:00
];
signing_key_path = config.sops.secrets."services/synapse/private_key".path;
2022-05-03 09:31:27 +00:00
enable_metrics = true;
2022-05-03 19:25:44 +00:00
experimental_features = {
msc2716_enabled = true;
spaces_enabled = true;
};
2022-05-28 08:34:31 +00:00
#sentry.dsn = "https://18e36e6f16b5490c83364101717cddba@o253952.ingest.sentry.io/6449283";
2022-05-01 06:50:10 +00:00
};
withJemalloc = true;
};
2022-06-12 15:39:15 +00:00
sops.secrets."services/synapse/private_key" = {owner = "matrix-synapse";};
sops.secrets."services/synapse/discord-dev-registration.yaml" = {owner = "matrix-synapse";};
2022-05-01 06:50:10 +00:00
services.postgresql.ensureDatabases = [
"synapse"
];
2022-06-12 15:39:15 +00:00
services.postgresql.ensureUsers = [
{
name = "matrix-synapse";
ensurePermissions = {
"DATABASE synapse" = "ALL PRIVILEGES";
};
}
];
2022-05-01 07:08:05 +00:00
systemd.services.matrix-synapse.serviceConfig.ExecStartPre = lib.mkForce (pkgs.writeShellScript "dummy" "true");
2022-08-26 15:28:14 +00:00
services.caddy.virtualHosts."matrix.int.chir.rs" = {
useACMEHost = "int.chir.rs";
extraConfig = ''
import baseConfig
2022-08-26 15:36:05 +00:00
handle /_matrix/* {
2022-08-26 16:49:55 +00:00
reverse_proxy localhost:8008 {
trusted_proxies private_ranges
}
2022-08-26 15:28:14 +00:00
}
2022-08-26 15:36:05 +00:00
handle /_synapse/* {
2022-08-26 16:49:55 +00:00
reverse_proxy localhost:8008 {
trusted_proxies private_ranges
}
2022-08-26 15:28:14 +00:00
}
2022-08-26 15:36:05 +00:00
handle /_matrix/media/* {
2022-08-26 15:28:14 +00:00
reverse_proxy {
2022-08-26 15:42:52 +00:00
to https://matrix.chir.rs
2022-08-26 16:45:19 +00:00
trusted_proxies private_ranges
2022-08-26 15:28:14 +00:00
header_up Host {upstream_hostport}
transport http {
versions 1.1 2 3
}
}
}
'';
2022-06-12 15:39:15 +00:00
};
2022-05-01 06:50:10 +00:00
}