From 3e4f22a64d7dc9b282b98ea961a3f9770e6fb0f1 Mon Sep 17 00:00:00 2001 From: mrtnvgr Date: Sat, 6 Apr 2024 14:46:05 +0700 Subject: [PATCH] fix(torrserver): debug fixes --- hosts/cloud/secrets/tsdb.nix | Bin 53 -> 45 bytes modules/server/misc/torrserver/default.nix | 1 + 2 files changed, 1 insertion(+) diff --git a/hosts/cloud/secrets/tsdb.nix b/hosts/cloud/secrets/tsdb.nix index 8c21d96080665ed9d157901122e7e376a1fd14b0..9b8e009db5e5fbf1c846d13ede537836a63926ba 100644 GIT binary patch literal 45 zcmV+|0Mh>eM@dveQdv+`0H!SRLx(G6RwG_)WYEYWuF7zaagwlKJz=ra|EKT(z6V>A Dk);#r literal 53 zcmV-50LuRWM@dveQdv+`0Ksbs?yRmFXEa diff --git a/modules/server/misc/torrserver/default.nix b/modules/server/misc/torrserver/default.nix index b0fc99c..7134708 100644 --- a/modules/server/misc/torrserver/default.nix +++ b/modules/server/misc/torrserver/default.nix @@ -82,6 +82,7 @@ in { }; networking.firewall.allowedTCPPorts = mkIf cfg.expose [ cfg.port ]; + networking.firewall.allowedUDPPorts = mkIf cfg.expose [ cfg.port ]; services.nginx.virtualHosts."ts.${domain}" = mkIf webIsSupported { locations."/".proxyPass = "http://localhost:${toString cfg.port}";