summaryrefslogtreecommitdiff
path: root/host/software/pkgs.kummerlaender.eu.nix
blob: a41f55e6aacc0158f2569396d48471afafab5956 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ pkgs, ... }:

{
  services.nginx.virtualHosts."pkgs.kummerlaender.eu" = {
    addSSL = true;
    enableACME = true;
    locations = {
      "/nixexprs.tar.gz" = {
        proxyPass = "http://localhost:3000/adrian/pkgs/archive/master.tar.gz";
      };
    };
  };
}