niksos/hosts/chmura/conduit.nix

38 lines
1.2 KiB
Nix
Raw Normal View History

2023-07-13 16:39:27 +02:00
{
pkgs,
inputs,
...
}: let
caddyConfig = ''
reverse_proxy /_matrix/* localhost:6167
header /.well-known/matrix/* Content-Type application/json
header /.well-known/matrix/* Access-Control-Allow-Origin *
respond /.well-known/matrix/server `{"m.server": "m.jacekpoz.pl:443"}`
respond /.well-known/matrix/client `{"m.homeserver":{"base_url":"https://m.jacekpoz.pl"}}`
'';
in {
services.matrix-conduit = {
enable = true;
2023-07-17 21:42:19 +02:00
package = inputs.conduit.packages.${pkgs.system}.default;
2023-07-17 20:03:22 +02:00
settings.global = {
server_name = "jacekpoz.pl";
database_backend = "rocksdb";
port = 6167;
max_request_size = 100000000;
conduit_cache_capacity_modifier = 4.0;
rocksdb_max_open_files = 20;
allow_check_for_updates = false;
};
2023-07-13 16:39:27 +02:00
};
services.caddy = {
enable = true;
virtualHosts."m.jacekpoz.pl".extraConfig = caddyConfig;
virtualHosts."jacekpoz.pl:8448".extraConfig = caddyConfig;
};
2023-07-13 16:39:27 +02:00
networking.firewall.allowedTCPPorts = [ 80 443 8448 ];
networking.firewall.allowedUDPPorts = [ 80 443 8448 ];
2023-07-13 16:39:27 +02:00
}