2021-12-08 16:39:00 +00:00
|
|
|
{ pkgs, ... }:
|
2021-08-07 12:38:18 +01:00
|
|
|
|
2021-12-08 16:39:00 +00:00
|
|
|
let
|
|
|
|
domain = "matrix.giugl.io";
|
|
|
|
webui_domain = "chat.giugl.io";
|
|
|
|
network = import ./network.nix;
|
2022-07-18 23:58:49 +01:00
|
|
|
db_name = "matrix-synapse";
|
2021-12-08 16:39:00 +00:00
|
|
|
in {
|
2021-08-07 12:38:18 +01:00
|
|
|
services = {
|
|
|
|
matrix-synapse = {
|
|
|
|
enable = true;
|
2022-07-17 19:30:45 +01:00
|
|
|
settings = {
|
|
|
|
server_name = "${domain}";
|
2022-07-18 23:58:49 +01:00
|
|
|
database_name = db_name;
|
2022-07-17 19:30:45 +01:00
|
|
|
public_baseurl = "https://${domain}";
|
|
|
|
registration_shared_secret = "runas!";
|
|
|
|
url_preview_enabled = true;
|
|
|
|
dynamic_thumbnails = true;
|
|
|
|
withJemalloc = true;
|
|
|
|
# enable_registration = true;
|
|
|
|
app_service_config_files = [
|
|
|
|
"/var/lib/matrix-synapse/discord-registration.yaml"
|
|
|
|
# "/var/lib/matrix-synapse/hookshot-registration.yml"
|
|
|
|
# "/var/lib/matrix-synapse/telegram-registration.yaml"
|
|
|
|
];
|
|
|
|
listeners = [{
|
|
|
|
port = 8008;
|
2022-07-18 23:58:49 +01:00
|
|
|
bind_addresses = [ "::1" ];
|
2022-07-17 19:30:45 +01:00
|
|
|
type = "http";
|
|
|
|
tls = false;
|
|
|
|
x_forwarded = true;
|
|
|
|
resources = [{
|
|
|
|
names = [ "client" "federation" ];
|
|
|
|
compress = false;
|
|
|
|
}];
|
|
|
|
}];
|
|
|
|
};
|
2022-07-18 23:58:49 +01:00
|
|
|
|
2022-07-17 19:30:45 +01:00
|
|
|
#extraConfig = ''
|
|
|
|
# auto_join_rooms:
|
|
|
|
# - "#general:matrix.giugl.io"
|
|
|
|
# max_upload_size: "50M"
|
|
|
|
#'';
|
2021-08-07 12:38:18 +01:00
|
|
|
};
|
|
|
|
|
2021-09-07 10:24:11 +01:00
|
|
|
postgresql = {
|
|
|
|
enable = true;
|
2021-12-08 15:48:02 +00:00
|
|
|
package = pkgs.postgresql_11;
|
2022-07-18 23:58:49 +01:00
|
|
|
ensureDatabases = [ db_name ];
|
2021-11-25 11:42:32 +00:00
|
|
|
ensureUsers = [{
|
|
|
|
name = "matrix-synapse";
|
|
|
|
ensurePermissions = { "DATABASE synapse" = "ALL PRIVILEGES"; };
|
|
|
|
}];
|
2021-09-07 10:24:11 +01:00
|
|
|
};
|
|
|
|
|
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"; };
|
2021-08-07 12:38:18 +01:00
|
|
|
in ''
|
|
|
|
add_header Content-Type application/json;
|
|
|
|
return 200 '${builtins.toJSON server}';
|
|
|
|
'';
|
|
|
|
|
2021-11-25 11:42:32 +00:00
|
|
|
locations."= /.well-known/matrix/client".extraConfig = let
|
|
|
|
client = {
|
2021-12-08 16:39:00 +00:00
|
|
|
"m.homeserver" = { "base_url" = "https://${domain}:443"; };
|
2021-11-25 11:42:32 +00:00
|
|
|
"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
|
|
|
|
2021-11-25 11:42:32 +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" = {
|
|
|
|
proxyPass = "http://[::1]:8008"; # without a trailing /
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
# web client
|
2021-12-08 16:39:00 +00:00
|
|
|
"${webui_domain}" = {
|
2021-08-07 12:38:18 +01:00
|
|
|
enableACME = true;
|
|
|
|
forceSSL = true;
|
|
|
|
|
2022-03-15 15:58:04 +00:00
|
|
|
root = pkgs.element-web.override {
|
2021-08-07 12:38:18 +01:00
|
|
|
conf = {
|
2022-03-15 15:58:04 +00:00
|
|
|
default_server_config."m.homeserver" = {
|
|
|
|
"base_url" = "https://${domain}";
|
|
|
|
"server_name" = "${domain}";
|
|
|
|
};
|
2021-08-07 12:38:18 +01:00
|
|
|
};
|
2022-03-15 15:58:04 +00:00
|
|
|
};
|
2021-08-07 12:38:18 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-08-31 15:36:42 +01:00
|
|
|
# discord bridge
|
2021-08-07 12:38:18 +01:00
|
|
|
matrix-appservice-discord = {
|
|
|
|
enable = true;
|
|
|
|
environmentFile = /secrets/matrix-appservice-discord/tokens.env;
|
|
|
|
# The appservice is pre-configured to use SQLite by default.
|
|
|
|
# It's also possible to use PostgreSQL.
|
|
|
|
settings = {
|
|
|
|
bridge = {
|
2021-12-08 16:39:00 +00:00
|
|
|
domain = domain;
|
|
|
|
homeserverUrl = "https://${domain}";
|
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 = ''
|
2021-12-08 16:39:00 +00:00
|
|
|
${network.architect-lan} ${domain} ${webui_domain}
|
|
|
|
${network.architect-wg} ${domain} ${webui_domain}
|
2021-11-25 11:42:32 +00:00
|
|
|
'';
|
2021-08-07 12:38:18 +01:00
|
|
|
|
|
|
|
}
|