Camelot: Add Matrix server
This commit is contained in:
parent
20e36c5bd8
commit
adb0f2bff9
|
@ -43,6 +43,7 @@
|
||||||
./wireguard.nix
|
./wireguard.nix
|
||||||
./nextcloud.nix
|
./nextcloud.nix
|
||||||
./gotosocial.nix
|
./gotosocial.nix
|
||||||
|
./matrix.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
swapDeviceUUID = "a7c628ab-c5cb-4094-89d0-19b153fbead4";
|
swapDeviceUUID = "a7c628ab-c5cb-4094-89d0-19b153fbead4";
|
||||||
|
|
65
configurations/camelot/matrix.nix
Normal file
65
configurations/camelot/matrix.nix
Normal file
|
@ -0,0 +1,65 @@
|
||||||
|
{ config, ... }:
|
||||||
|
let
|
||||||
|
conduitConfig = config.services.matrix-conduit.settings;
|
||||||
|
in {
|
||||||
|
services.matrix-conduit = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
settings = {
|
||||||
|
global = {
|
||||||
|
server_name = "dalaran.fr";
|
||||||
|
address = "127.0.0.1";
|
||||||
|
database_backend = "rocksdb";
|
||||||
|
|
||||||
|
enable_lightning_bolt = false;
|
||||||
|
allow_registration = false;
|
||||||
|
well_known = {
|
||||||
|
client = "https://matrix.dalaran.fr";
|
||||||
|
server = "matrix.dalaran.fr:443";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.nginx.virtualHosts = {
|
||||||
|
"dalaran.fr".locations."/.well-known/matrix/" = {
|
||||||
|
return = "301 https://matrix.dalaran.fr$request_uri";
|
||||||
|
};
|
||||||
|
|
||||||
|
"matrix.dalaran.fr" = {
|
||||||
|
enableACME = true;
|
||||||
|
addSSL = true;
|
||||||
|
listen = [
|
||||||
|
{
|
||||||
|
addr = "0.0.0.0";
|
||||||
|
port = 8448;
|
||||||
|
ssl = true;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
addr= "[::]";
|
||||||
|
port = 8448;
|
||||||
|
ssl = true;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
addr = "0.0.0.0";
|
||||||
|
port = 443;
|
||||||
|
ssl = true;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
addr= "[::]";
|
||||||
|
port = 443;
|
||||||
|
ssl = true;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
locations."/" = {
|
||||||
|
recommendedProxySettings = true;
|
||||||
|
proxyPass = "http://${conduitConfig.global.address}:${builtins.toString conduitConfig.global.port}";
|
||||||
|
};
|
||||||
|
|
||||||
|
extraConfig = "client_max_body_size 20M;";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
networking.firewall.allowedTCPPorts = [ 443 8448 ];
|
||||||
|
}
|
Loading…
Reference in a new issue