diff options
Diffstat (limited to '')
-rw-r--r-- | modules/services/transmission/default.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/services/transmission/default.nix b/modules/services/transmission/default.nix index a1e14ab..ac0ded0 100644 --- a/modules/services/transmission/default.nix +++ b/modules/services/transmission/default.nix @@ -25,6 +25,20 @@ in { }; }; + services.nginx.virtualHosts."bt.fcuny.xyz" = { + forceSSL = true; + useACMEHost = "bt.fcuny.xyz"; + locations."/" = { + proxyPass = "http://127.0.0.1:9091"; + proxyWebsockets = true; + }; + }; + + security.acme.certs."bt.fcuny.xyz" = { + dnsProvider = "gcloud"; + credentialsFile = secrets."acme/credentials".path; + }; + networking.firewall = { allowedTCPPorts = [ 52213 ]; allowedUDPPorts = [ 52213 ]; |