nix-deploy/config/hosts/wind/services/synapse.nix

92 lines
2.5 KiB
Nix
Raw Normal View History

2021-09-22 10:16:11 +02:00
{ config, ... }:
{
services.matrix-synapse = {
enable = true;
2021-09-22 15:31:20 +02:00
withJemalloc = true;
2022-08-03 08:57:34 +02:00
settings = {
server_name = "graven.dev";
enable_registration = false;
registration_shared_secret = builtins.toString config.secrets.files.synapse_registration_shared_secret.file;
turn_shared_secret = builtins.toString config.secrets.files.turn_shared_secret.file;
max_upload_size = "100M";
database.name = "psycopg2";
database.args.user = "synapse";
database.args.database = "synapse";
turn_uris = [
"turn:turn.graven.dev:3478?transport=udp"
"turn:turn.graven.dev:3478?transport=tcp"
"turn:turn.graven.dev:3479?transport=udp"
"turn:turn.graven.dev:3479?transport=tcp"
"turns:turn.graven.dev:5349?transport=udp"
"turns:turn.graven.dev:5349?transport=tcp"
"turns:turn.graven.dev:5350?transport=udp"
"turns:turn.graven.dev:5350?transport=tcp"
];
report_stats = true;
2021-12-18 12:50:07 +01:00
2022-08-03 08:57:34 +02:00
extraConfig = ''
password_config:
enabled: false
oidc_providers:
- idp_id: authentik
idp_name: authentik
discover: true
issuer: "https://auth.graven.dev/application/o/synapse/"
client_id: "7a77036d3b360265895f2ab5a51264ba586c93d5"
client_secret: "a9f9146fd13338230481a71c824d122bfb5e8a2118f2cdaf882746ad6726aeecd50ef522338acec89d3f8ccb8014124e022a6af6769807ea4271931f219a3f55"
allow_existing_users: true
scopes:
- "openid"
- "profile"
- "email"
user_mapping_provider:
config:
localpart_template: "{{ user.name }}"
display_name_template: "{{ user.name|capitalize }}"
'';
2021-12-18 12:50:07 +01:00
2022-08-03 08:57:34 +02:00
logConfig = ''
version: 1
2021-09-22 10:16:11 +02:00
2022-08-03 08:57:34 +02:00
formatters:
precise:
format: '%(asctime)s - %(name)s - %(lineno)d - %(levelname)s - %(request)s - %(message)s'
2021-09-22 10:16:11 +02:00
2022-08-03 08:57:34 +02:00
handlers:
console:
class: logging.StreamHandler
formatter: precise
2021-09-22 10:16:11 +02:00
2022-08-03 08:57:34 +02:00
loggers:
synapse.storage.SQL:
# beware: increasing this to DEBUG will make synapse log sensitive
# information such as access tokens.
level: WARN
2021-09-22 10:16:11 +02:00
2022-08-03 08:57:34 +02:00
root:
level: WARN
handlers: [console]
2021-09-22 10:16:11 +02:00
2022-08-03 08:57:34 +02:00
disable_existing_loggers: false
'';
listeners = [
{
port = 8008;
bind_addresses = ["127.0.0.1"];
type = "http";
tls = false;
x_forwarded = true;
resources = [
{
names = [ "client" "federation" ];
compress = false;
}
];
}
];
};
2021-09-22 10:16:11 +02:00
};
}