summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/lanparty/lancache.nix
blob: ff5b0d78830704c4b83bf444e16fcc5bcfd57edd (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{ pkgs, lib, config, ... }:
with import <stockholm/lib>;
let
  # see https://github.com/zeropingheroes/lancache for full docs
  lancache= pkgs.stdenv.mkDerivation rec {
    name = "lancache-2017-06-26";
    src = pkgs.fetchFromGitHub {
      # origin: https://github.com/multiplay/lancache
      # forked: https://github.com/zeropingheroes/lancache
      repo = "lancache";
      owner = "zeropingheroes";
      rev = "143f7bb";
      sha256 = "1ra4l7qz3k231j5wabr89s5hh80n1kk8vgd3dsh0xx5mdpjhvdl6";
    };
    phases = [ "unpackPhase" "installPhase" ];
    # here we can chance to edit `includes/proxy-cache-paths.conf`
    installPhase = ''
      mkdir -p $out
      cp -r * $out/
      sed -i -e 's/^\(user\).*/\1 ${cfg.user} ${cfg.group};/' \
             -e '1 idaemon off;' \
              $out/nginx.conf
    '';
  };
  cfg = {
    group = "nginx-lancache";
    user = "nginx-lancache";
    statedir = "/var/lancache";
    package = pkgs.stdenv.lib.overrideDerivation pkgs.nginx (old:{
      configureFlags = old.configureFlags ++ [
        "--with-http_slice_module"
        "--with-stream"
        "--with-pcre"
        ];
    });
  };
in {
  systemd.services.nginx-lancache = {
      description = "Nginx lancache Server";
      after = [ "network.target" ];
      wantedBy = [ "multi-user.target" ];
      restartIfChanged = true;

      preStart = ''
        mkdir -p ${cfg.statedir} && cd ${cfg.statedir}
        PATH_CACHE=$PATH_BASE/cache
        PATH_LOGS=$PATH_BASE/logs

        mkdir -p cache/{installers,tmp} logs
        rm -f conf; ln -s ${lancache} conf
        chown -R ${cfg.user}:${cfg.group} .
        '';
      serviceConfig = {
        ExecStart = "${cfg.package}/bin/nginx  -p ${cfg.statedir}";
        ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
        Restart = "always";
        RestartSec = "10s";
        StartLimitInterval = "1min";
      };
    };
    environment.etc.nginx.source = lancache;
      users.extraUsers = (singleton
    { name = cfg.user;
      group = cfg.group;
      uid = genid cfg.group;
    });

    users.extraGroups = (singleton
      { name = "${cfg.group}";
        gid = genid cfg.group;
    });

}