mio-ops/roles/matrix.nix

141 lines
4.6 KiB
Nix
Raw Normal View History

2019-11-14 01:17:20 +00:00
# NixOps configuration for the hosts running a Matrix server (synapse)
{ config, pkgs, lib, ... }:
{
2020-03-30 10:04:25 +00:00
imports = [
../secrets/matrix.nix
];
2019-11-14 01:17:20 +00:00
services = {
matrix-synapse = {
2020-03-30 03:37:09 +00:00
enable = true; # Enable the synapse server
server_name = "mcwhirter.io"; # Server's public domain name
public_baseurl = "https://synapse.mcwhirter.io:443/"; # Matrix target URL
web_client = true; # Whether to serve a web client
enable_registration = true; # Toggle user registration
2019-11-14 01:17:20 +00:00
listeners = [ {
2020-03-30 03:37:09 +00:00
bind_address = "::1"; # Listen on localhost only
port = 8008; # Port to listen on
2019-11-14 01:17:20 +00:00
resources = [
{
compress = true;
names = [ "client" "webclient" ];
} {
compress = false;
names = [ "federation" ];
} ];
tls = true;
type = "http";
x_forwarded = true;
} ];
2020-04-21 01:16:15 +00:00
max_upload_size = "200M"; # Also set client_max_body_size to at least this
2020-03-30 03:37:09 +00:00
tls_certificate_path = "/var/lib/acme/synapse.mcwhirter.io/fullchain.pem";
tls_private_key_path = "/var/lib/acme/synapse.mcwhirter.io/key.pem";
2020-03-30 10:04:25 +00:00
turn_shared_secret = "IZI43ylg6aJdMwy5MyhUPqT8SJD4C3P1vDcIFMzqGvTXJiCjAEvnPcDCBZfig5Q6";
turn_uris = [
"turn:turn.mcwhirter.io:5349?transport=udp"
"turn:turn.mcwhirter.io:5350?transport=udp"
"turn:turn.mcwhirter.io:5349?transport=tcp"
"turn:turn.mcwhirter.io:5350?transport=tcp"
];
2020-03-30 08:15:32 +00:00
url_preview_enabled = true;
2019-11-14 01:17:20 +00:00
};
nginx = {
enable = true;
recommendedTlsSettings = true;
recommendedOptimisation = true;
recommendedGzipSettings = true;
recommendedProxySettings = true;
virtualHosts = {
2020-03-30 03:37:09 +00:00
"synapse.mcwhirter.io" = {
2019-11-14 01:17:20 +00:00
forceSSL = true;
enableACME = true;
locations = {
"/_matrix" = {
proxyPass = "https://[::1]:8008";
};
"/.well-known/matrix/server".extraConfig =
let
# use 443 instead of the default 8448 port to unite
# the client-server and server-server port for simplicity
2020-03-30 03:37:09 +00:00
server = { "m.server" = "synapse.mcwhirter.io:443"; };
2019-11-14 01:17:20 +00:00
in ''
add_header Content-Type application/json;
return 200 '${builtins.toJSON server}';
'';
"= /.well-known/matrix/client".extraConfig =
let
client = {
2020-03-30 03:37:09 +00:00
"m.homeserver" = { "base_url" = "https://synapse.mcwhirter.io"; };
2019-11-14 01:17:20 +00:00
"m.identity_server" = { "base_url" = "https://vector.im"; };
};
# ACAO required to allow riot-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}';
'';
};
2020-04-21 01:16:15 +00:00
extraConfig = ''
client_max_body_size 200M; # Needs to be no less than max_upload_size
'';
2019-11-14 01:17:20 +00:00
};
2020-03-30 03:37:09 +00:00
"chat.mcwhirter.io" = {
forceSSL = true;
enableACME = true;
serverAliases = [
"chat.${config.networking.domain}"
];
root = pkgs.riot-web; # Install RIOT web in the nginx root
};
2019-11-14 01:17:20 +00:00
};
};
2020-03-30 03:37:09 +00:00
postgresql = {
enable = true;
};
2019-11-14 01:17:20 +00:00
};
2020-04-27 08:07:20 +00:00
services.postgresql = {
ensureDatabases = [ "matrix-synapse" ]; # Ensure the database persists
ensureUsers = [
{
name = "matrix-synapse"; # Ensure the database user persists
ensurePermissions = { # Ensure the database permissions persist
"DATABASE \"matrix-synapse\"" = "ALL PRIVILEGES";
};
}
];
};
2020-04-21 22:14:39 +00:00
security.acme = {
acceptTerms = true;
certs = {
"chat.mcwhirter.io" = {
group = "matrix-synapse";
allowKeysForGroup = true;
postRun = "systemctl reload nginx.service";
email = "acme@mcwhirter.io";
};
"synapse.mcwhirter.io" = {
group = "matrix-synapse";
allowKeysForGroup = true;
postRun = "systemctl reload nginx.service; systemctl restart matrix-synapse.service";
email = "acme@mcwhirter.io";
};
2019-11-14 01:17:20 +00:00
};
};
networking.firewall = {
enable = true;
allowedTCPPorts = [
443 # HTTPS
];
};
}