15 lines
400 B
Nix
15 lines
400 B
Nix
{
|
|
# networking.firewall.allowedTCPPorts = [8448]; # TODO: Is this needed?
|
|
services = {
|
|
caddy.virtualHosts."matrix.henryhiles.com".extraConfig = "reverse_proxy unix//run/conduwuit/socket";
|
|
|
|
conduwuit = {
|
|
enable = true;
|
|
group = "caddy";
|
|
settings.global = {
|
|
server_name = "henryhiles.com";
|
|
unix_socket_path = "/run/conduwuit/socket";
|
|
};
|
|
};
|
|
};
|
|
}
|