summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/nginx/icecult.nix
blob: ce4f62e55a0689741bd884c42f4048a4b8548da4 (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
{ config, pkgs, lib, ... }:

with import <stockholm/lib>;

let
  icecult = pkgs.fetchFromGitHub {
    owner = "kraiz";
    repo = "icecult";
    rev = "1942d43381a97f30111a48725f7532c343a6f4d7";
    sha256 = "0l8q7kw3w1kpvmy8hza9vr5liiycivbljkmwpacaifbay5y98z58";
  };
in{
  krebs.nginx = {
    enable = true;
    servers.default = {
        extraConfig = ''
          root ${icecult}/app;
        '';
        locations = [
          (nameValuePair "/rpc" ''
        rewrite /rpc/(.*) /$1 break;
        proxy_http_version 1.1;
        proxy_pass http://10.42.22.163:3121;
          '')
      ];
    };
  };
}