summaryrefslogtreecommitdiffstats
path: root/3modules/tv/nginx.nix
blob: d9d95be842f55e3f66a63a6eff14367b1e9a3dd4 (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
{ config, pkgs, lib, ... }:

with builtins;
with lib;
let
  cfg = config.tv.nginx;

  out = {
    options.tv.nginx = api;
    config = mkIf cfg.enable imp;
  };

  api = {
    enable = mkOption {
      type = types.bool;
      default = false;
      description = "Enable nginx.";
    };

    retiolum-locations = mkOption {
      type = with types; listOf (attrsOf str);
      default = [];
    };
  };

  imp = {
    services.nginx =
      let
        name = config.tv.retiolum.name;
        qname = "${name}.retiolum";
      in
      assert config.tv.retiolum.enable;
      {
        enable = true;
        httpConfig = ''
          include           ${pkgs.nginx}/conf/mime.types;
          default_type      application/octet-stream;
          sendfile          on;
          keepalive_timeout 65;
          gzip              on;
          server {
            listen 80 default_server;
            server_name _;
            location / {
              return 404;
            }
          }
          server {
            listen 80;
            server_name ${name} ${qname};

            ${indent (concatStrings (map to-location cfg.retiolum-locations))}

            location / {
              return 404;
            }
          }
        '';
      };
  };

  
  indent = replaceChars ["\n"] ["\n  "];

  to-location = { name, value }: ''
    location ${name} {
      ${indent value}
    }
  '';

in
out


#let
#  cfg = config.tv.nginx;
#  arg' = arg // { inherit cfg; };
#in
#
#{
#  options.tv.nginx = import ./options.nix arg';
#  config = lib.mkIf cfg.enable (import ./config.nix arg');
#}