Prove
This commit is contained in:
parent
4300ddacb0
commit
b80563f0ed
10 changed files with 755 additions and 1 deletions
69
lxc-nix/services/rutorrent.nix
Normal file
69
lxc-nix/services/rutorrent.nix
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
{ config, ... }:
|
||||
let
|
||||
parameters = import ../parameters.nix { };
|
||||
in
|
||||
{
|
||||
services = {
|
||||
|
||||
rtorrent = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
downloadDir = parameters.downloadDir;
|
||||
};
|
||||
|
||||
rutorrent = {
|
||||
enable = true;
|
||||
hostName = parameters.containerName;
|
||||
plugins = [
|
||||
"_cloudflare"
|
||||
"_getdir"
|
||||
"_noty2"
|
||||
"_task"
|
||||
"autotools"
|
||||
"check_port"
|
||||
"chunks"
|
||||
"cookies"
|
||||
"cpuload"
|
||||
# "сreate"
|
||||
"data"
|
||||
"datadir"
|
||||
"diskspace"
|
||||
"edit"
|
||||
"erasedata"
|
||||
"extratio"
|
||||
"extsearch"
|
||||
"feeds"
|
||||
"filedrop"
|
||||
"geoip"
|
||||
"history"
|
||||
"httprpc"
|
||||
"ipad"
|
||||
"loginmgr"
|
||||
"lookat"
|
||||
"mediainfo"
|
||||
"ratio"
|
||||
"retrackers"
|
||||
"rss"
|
||||
"rssurlrewrite"
|
||||
"rutracker_check"
|
||||
"scheduler"
|
||||
"screenshots"
|
||||
"seedingtime"
|
||||
"show_peers_like_wtorrent"
|
||||
"source"
|
||||
"spectrogram"
|
||||
"theme"
|
||||
"throttle"
|
||||
"tracklabels"
|
||||
"trafic"
|
||||
"unpack"
|
||||
"uploadeta"
|
||||
];
|
||||
nginx = {
|
||||
enable = true;
|
||||
# exposeInsecureRPC2mount = true;
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue