blob: 0069e4530a7b7b3a710eea4b523ca08946e1414b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{ lib, ... }:
with lib;
let
port = ident: toString (28000 + ident);
instances = [ 1 2 3 4 5 6 7 8 9 ];
in {
services.nginx.recommendedProxySettings = true;
services.nginx.virtualHosts."warrior.gum.r".locations = let
# TODO location "/" shows all warrior instances
proxy = ident:
{
"/warrior${toString ident}/" = {
proxyPass = "http://localhost:${port ident}/";
# rewrite ^/info /warrior${toString ident}/info;
extraConfig = ''
sub_filter "http://warrior.gum.r/info" "http://warrior.gum.r/warrior${toString ident}/info";
sub_filter_once off;
'';
};
};
in
foldl' mergeAttrs {} (map proxy instances);
virtualisation.oci-containers.containers = let
container = ident:
{ "archiveteam-warrior${toString ident}" = {
image = "archiveteam/warrior-dockerfile";
ports = [ "127.0.0.1:${port ident}:8001" ];
environment = {
DOWNLOADER = "makefu";
SELECTED_PROJECT = "auto";
CONCURRENT_ITEMS = "6";
WARRIOR_ID = toString ident;
};
};
};
in
foldl' mergeAttrs {} (map container instances);
}
|