53 lines
1.2 KiB
Nix
53 lines
1.2 KiB
Nix
|
{ lib, config, pkgs, ... }:
|
||
|
|
||
|
let
|
||
|
domain = "htdel.giugl.io";
|
||
|
network = import ./network.nix;
|
||
|
in {
|
||
|
services = {
|
||
|
deluge = {
|
||
|
enable = true;
|
||
|
group = "media";
|
||
|
declarative = true;
|
||
|
config = {
|
||
|
download_location = "/media/deluge";
|
||
|
max_upload_speed = 20;
|
||
|
# full-stream
|
||
|
enc_level = 1;
|
||
|
# forced
|
||
|
enc_in_policy = 0;
|
||
|
# forced
|
||
|
enc_out_policy = 0;
|
||
|
max_active_seeding = 100;
|
||
|
max_connections_global = 1000;
|
||
|
max_active_limit = 100;
|
||
|
max_active_downloading = 100;
|
||
|
listen_ports = [ 51413 51414 ];
|
||
|
random_port = false;
|
||
|
enabled_plugins = [ "Label" "Extractor" ];
|
||
|
};
|
||
|
web.enable = true;
|
||
|
authFile = "/secrets/deluge/auth";
|
||
|
extraPackages = [ pkgs.unrar ];
|
||
|
};
|
||
|
|
||
|
nginx.virtualHosts.${domain} = {
|
||
|
locations."/" = {
|
||
|
proxyPass = "http://localhost:8112";
|
||
|
extraConfig = ''
|
||
|
allow 10.0.0.0/24;
|
||
|
${lib.concatMapStrings (x: "allow ${x};") network.gdevices-wg}
|
||
|
deny all;
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
networking.extraHosts = ''
|
||
|
${network.architect-lan} ${domain}
|
||
|
${network.architect-wg} ${domain}
|
||
|
'';
|
||
|
|
||
|
users.groups.media.members = [ "deluge" ];
|
||
|
}
|