12 lines
287 B
Nix
12 lines
287 B
Nix
{ config, lib, ... }:
|
|
{
|
|
services.nginx.virtualHosts."torrent.${config.domains.p1}" = lib.mkIf config.services.transmission.enable {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
locations."/" = {
|
|
proxyPass = "http://127.0.0.1:9091";
|
|
proxyWebsockets = true;
|
|
};
|
|
};
|
|
}
|