summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/elchos/search.nix
blob: 5adaa0c6f7c7bbb5b00020e89e2d6611d933e73c (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
{ config, lib, pkgs, ... }:

# graphite-web on port 8080
# carbon cache on port 2003 (tcp/udp)
with import <stockholm/lib>;
let
  #primary-itf = "eth0";
  primary-itf = "wlp2s0";
  elch-sock = "${config.services.uwsgi.runDir}/uwsgi-elch.sock";
  ddclientUser = "ddclient";
  sec = toString <secrets>;
  nsupdate = import "${sec}/nsupdate-search.nix";
  stateDir = "/var/spool/ddclient";
  cfg = "${stateDir}/cfg";
  ddclientPIDFile = "${stateDir}/ddclient.pid";

  acmepath = "/var/lib/acme/";
  acmechall = acmepath + "/challenges/";
  # TODO: correct cert generation requires a `real` internet ip address
  stats-dom = "stats.nsupdate.info";
  search-dom = "search.nsupdate.info";
  search_ssl_cert = "${acmepath}/${search-dom}/fullchain.pem";
  search_ssl_key = "${acmepath}/${search-dom}/key.pem";
  stats_ssl_cert = "${acmepath}/${stats-dom}/fullchain.pem";
  stats_ssl_key = "${acmepath}/${stats-dom}/key.pem";

  gen-cfg = dict: ''
    ssl=yes
    cache=${stateDir}/ddclient.cache
    pid=${ddclientPIDFile}
    ${concatStringsSep "\n" (mapAttrsToList (user: pass: ''

      use=if, if=${primary-itf}
      protocol=dyndns2, server=ipv4.nsupdate.info, login=${user}, password='${pass}' ${user}
      #usev6=if, if=${primary-itf}
      #protocol=dyndns2, server=ipv6.nsupdate.info, login=${user}, password='${pass}' ${user}
    '') dict)}
  '';

in {
  users.extraUsers = singleton {
    name = ddclientUser;
    uid = genid "ddclient";
    description = "ddclient daemon user";
    home = stateDir;
    createHome = true;
  };
  services.redis.enable = mkForce true;
  services.redis.bind = "127.0.0.1";

  services.uwsgi = {
    enable = true;
    user = "nginx";
    plugins = [ "python3" ];
    instance = {
      type = "emperor";
      vassals = {
        elchhub = {
          type = "normal";
          pythonPackages = self: with self; [ pkgs.elchhub ];
          socket = elch-sock;
        };
      };
    };
  };

  security.acme.certs = {
    "${stats-dom}" = {
      email = "acme@syntax-fehler.de";
      webroot = "${acmechall}/${stats-dom}/";
      group = "nginx";
      allowKeysForGroup = true;
      postRun = "systemctl reload nginx.service";
      extraDomains = {
        "${stats-dom}" = null ;
      };
    };
    "${search-dom}" = {
      email = "acme@syntax-fehler.de";
      webroot = "${acmechall}/${search-dom}/";
      group = "nginx";
      allowKeysForGroup = true;
      postRun = "systemctl reload nginx.service";
      extraDomains = {
        "${stats-dom}" = null ;
      };
    };
  };

  krebs.nginx = {
    enable = mkDefault true;
    servers = {
      elch-stats = {
        server-names = [ stats-dom ];
        # listen = [ "80" "443 ssl" ];
        ssl = {
            enable = true;
            certificate =   stats_ssl_cert;
            certificate_key = stats_ssl_key;
            force_encryption = true;
        };

        locations = [
            (nameValuePair "/" ''
              proxy_set_header   Host $host;
              proxy_set_header   X-Real-IP          $remote_addr;
              proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;
              proxy_pass http://localhost:3000/;
            '')
            (nameValuePair  "/.well-known/acme-challenge" ''
             root ${acmechall}/${search-dom}/;
            '')
        ];
      };
      elchhub = {
        server-names = [ "search.nsupdate.info" ];
        # listen = [ "80" "443 ssl" ];
        ssl = {
            enable = true;
            certificate =   search_ssl_cert;
            certificate_key = search_ssl_key;
            force_encryption = true;
        };
        locations = [ (nameValuePair "/" ''
          uwsgi_pass unix://${elch-sock};
          uwsgi_param         UWSGI_CHDIR     ${pkgs.elchhub}/${pkgs.python3.sitePackages};
          uwsgi_param         UWSGI_MODULE    elchhub.wsgi;
          uwsgi_param         UWSGI_CALLABLE  app;

          include ${pkgs.nginx}/conf/uwsgi_params;
        '')
        (nameValuePair  "/.well-known/acme-challenge" ''
          root ${acmechall}/${search-dom}/;
        '')
        ];
      };
    };
  };

  systemd.services = {
    redis.serviceConfig.LimitNOFILE=10032;
    elchos-ftp-scanner = {
      wantedBy = [ "multi-user.target" ];
      after = [ "ip-up.target" ];
      serviceConfig = {
        User = "nginx";
        ExecStart = "${pkgs.elchhub}/bin/elch-manager";
      };
    };
    register-elchos-nsupdate = {
      wantedBy = [ "multi-user.target" ];
      after = [ "ip-up.target" ];
      serviceConfig = {
        Type = "forking";
        User = ddclientUser;
        PIDFile = ddclientPIDFile;
        ExecStartPre = pkgs.writeDash "init-nsupdate" ''
          cp -vf ${pkgs.writeText "ddclient-config" (gen-cfg nsupdate)} ${cfg}
          chmod 700 ${cfg}
        '';
        ExecStart = "${pkgs.ddclient}/bin/ddclient -verbose -daemon 1 -noquiet -file ${cfg}";
      };
    };
  };

  services.grafana = {
    enable = true;
    addr = "127.0.0.1";
    users.allowSignUp = false;
    users.allowOrgCreate = false;
    users.autoAssignOrg = false;
    auth.anonymous.enable = true;
    security = import <secrets/grafana_security.nix>; # { AdminUser = ""; adminPassword = ""}
  };

  services.graphite = {
    api = {
      enable = true;
      listenAddress = "127.0.0.1";
      port = 8080;
    };
    carbon = {
      enableCache = true;
      # save disk usage by restricting to 1 bulk update per second
      config = ''
        [cache]
        MAX_CACHE_SIZE = inf
        MAX_UPDATES_PER_SECOND = 1
        MAX_CREATES_PER_MINUTE = 500
        '';
      storageSchemas = ''
        [carbon]
        pattern = ^carbon\.
        retentions = 60:90d

        [elchos]
        patterhn = ^elchos\.
        retentions = 10s:30d,60s:3y

        [default]
        pattern = .*
        retentions = 30s:30d,300s:1y
        '';
    };
  };

  networking.firewall = {
    allowedTCPPorts = [ 2003 80 443 ];
    allowedUDPPorts = [ 2003 ];
  };
}