2023-05-12 22:05:10 +01:00
|
|
|
{ config, pkgs, lib, ... }:
|
2021-08-07 12:38:18 +01:00
|
|
|
|
2021-12-08 16:39:00 +00:00
|
|
|
let
|
2022-11-27 10:23:09 +00:00
|
|
|
domain = "runas.rocks";
|
2023-05-12 22:05:10 +01:00
|
|
|
utilities = import ./utilities.nix { inherit lib config; };
|
|
|
|
inherit (utilities) architectInterfaceAddress;
|
2022-11-27 10:23:09 +00:00
|
|
|
in
|
|
|
|
{
|
2024-12-06 20:50:09 +00:00
|
|
|
age.secrets.matrix = {
|
|
|
|
file = ../../secrets/matrix-synapse.age;
|
|
|
|
owner = "matrix-synapse";
|
|
|
|
};
|
|
|
|
|
2021-08-07 12:38:18 +01:00
|
|
|
services = {
|
|
|
|
matrix-synapse = {
|
|
|
|
enable = true;
|
2024-12-06 20:50:09 +00:00
|
|
|
# Database config is in the .age file
|
|
|
|
extraConfigFiles = [ config.age.secrets.matrix.path ];
|
2022-07-17 19:30:45 +01:00
|
|
|
settings = {
|
|
|
|
server_name = "${domain}";
|
|
|
|
public_baseurl = "https://${domain}";
|
|
|
|
registration_shared_secret = "runas!";
|
|
|
|
url_preview_enabled = true;
|
|
|
|
dynamic_thumbnails = true;
|
|
|
|
withJemalloc = true;
|
2022-12-01 13:28:10 +00:00
|
|
|
enable_registration = false;
|
2023-09-04 00:35:00 +01:00
|
|
|
password_config.enabled = true;
|
2022-11-27 10:23:09 +00:00
|
|
|
|
2022-12-01 13:28:10 +00:00
|
|
|
auto_join_rooms = [ "#general:${domain}" "#music:${domain}" "#movies:${domain}" ];
|
2023-02-11 02:29:48 +00:00
|
|
|
|
2022-07-17 19:30:45 +01:00
|
|
|
listeners = [{
|
|
|
|
port = 8008;
|
2022-11-11 18:12:24 +00:00
|
|
|
bind_addresses = [ "127.0.0.1" ];
|
2022-07-17 19:30:45 +01:00
|
|
|
type = "http";
|
|
|
|
tls = false;
|
|
|
|
x_forwarded = true;
|
|
|
|
resources = [{
|
|
|
|
names = [ "client" "federation" ];
|
|
|
|
compress = false;
|
|
|
|
}];
|
|
|
|
}];
|
|
|
|
};
|
2021-08-07 12:38:18 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nginx.virtualHosts = {
|
|
|
|
# server
|
2021-12-08 16:39:00 +00:00
|
|
|
${domain} = {
|
2021-08-07 12:38:18 +01:00
|
|
|
enableACME = true;
|
|
|
|
forceSSL = true;
|
2021-12-08 15:48:02 +00:00
|
|
|
extraConfig = ''
|
|
|
|
client_max_body_size 30m;
|
|
|
|
'';
|
2021-08-07 12:38:18 +01:00
|
|
|
locations."= /.well-known/matrix/server".extraConfig =
|
2021-12-08 16:39:00 +00:00
|
|
|
let server = { "m.server" = "${domain}:443"; };
|
2022-11-27 10:23:09 +00:00
|
|
|
in
|
|
|
|
''
|
2021-08-07 12:38:18 +01:00
|
|
|
add_header Content-Type application/json;
|
|
|
|
return 200 '${builtins.toJSON server}';
|
|
|
|
'';
|
|
|
|
|
2022-11-27 10:23:09 +00:00
|
|
|
locations."= /.well-known/matrix/client".extraConfig =
|
|
|
|
let
|
|
|
|
client = {
|
|
|
|
"m.homeserver" = { "base_url" = "https://${domain}:443"; };
|
|
|
|
"m.identity_server" = { "base_url" = "https://vector.im"; };
|
|
|
|
};
|
|
|
|
# ACAO required to allow element-web on any URL to request this json file
|
|
|
|
in
|
|
|
|
''
|
|
|
|
add_header Content-Type application/json;
|
|
|
|
add_header Access-Control-Allow-Origin *;
|
|
|
|
return 200 '${builtins.toJSON client}';
|
|
|
|
'';
|
2021-08-07 12:38:18 +01:00
|
|
|
|
2023-02-11 02:29:48 +00:00
|
|
|
# locations."/".extraConfig = ''
|
|
|
|
# return 404;
|
|
|
|
# '';
|
2021-08-07 12:38:18 +01:00
|
|
|
|
|
|
|
# forward all Matrix API calls to the synapse Matrix homeserver
|
|
|
|
locations."/_matrix" = {
|
2022-11-11 18:12:24 +00:00
|
|
|
proxyPass = "http://127.0.0.1:8008"; # without a trailing /
|
2021-08-07 12:38:18 +01:00
|
|
|
};
|
2022-11-27 10:23:09 +00:00
|
|
|
|
|
|
|
locations."/_synapse" = {
|
|
|
|
proxyPass = "http://127.0.0.1:8008"; # without a trailing /
|
|
|
|
};
|
2021-08-07 12:38:18 +01:00
|
|
|
};
|
|
|
|
};
|
2021-11-25 11:42:32 +00:00
|
|
|
};
|
2021-08-07 12:38:18 +01:00
|
|
|
|
2021-11-25 11:42:32 +00:00
|
|
|
networking.extraHosts = ''
|
2023-05-12 22:05:10 +01:00
|
|
|
${architectInterfaceAddress "lan"} ${domain}
|
|
|
|
${architectInterfaceAddress "tailscale"} ${domain}
|
2021-11-25 11:42:32 +00:00
|
|
|
'';
|
2021-08-07 12:38:18 +01:00
|
|
|
}
|