Home

dotnix @dc9244482fd1c34f9b69333dad80e64ca694fd73 - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
dotnix / machines / dragonwell / caddy.nix
- raw
 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
{pkgs, ...}: {
  services.caddy = {
    enable = true;
    virtualHosts = {
      "jolheiser.com" = {
        extraConfig = ''
          handle_path /.well-known/webfinger {
            header Content-Type application/jrd+json
            respond ${builtins.toJSON {
            subject = "acct:john@jolheiser.com";
            links = [
              {
                rel = "http://openid.net/specs/connect/1.0/issuer";
                href = "https://auth.jolheiser.com";
              }
            ];
          }}
          }
          handle_path /bennet* {
            root * /srv/bennet/src
            file_server
          }
          handle /resume* {
            root * ${pkgs.jolheiser.resume}
            rewrite /resume /resume.pdf
            file_server
          }
          handle {
            root * ${pkgs.jolheiser.website}
            file_server
          }
        '';
        serverAliases = ["www.jolheiser.com"];
      };
      "go.jolheiser.com" = {
        extraConfig = ''
          header Content-Type text/html
          respond /* `<html><head>
            <meta name="go-import" content="go.jolheiser.com{uri} git https://git.jojodev.com/jolheiser{uri}.git">
            <meta http-equiv="refresh" content="3; url=https://pkg.go.dev/go.jolheiser.com{uri}" />
            </head><body>
            Redirecting to <a href="https://pkg.go.dev/go.jolheiser.com{uri}">https://pkg.go.dev/go.jolheiser.com{uri}</a>
            </body></html>`
        '';
      };
      "git.jolheiser.com".extraConfig = ''
        reverse_proxy localhost:8449
      '';
      "social.jolheiser.com".extraConfig = ''
        reverse_proxy localhost:4686
      '';
      "auth.jolheiser.com".extraConfig = ''
        reverse_proxy localhost:2884
      '';
      "todo.jolheiser.com".extraConfig = ''
        reverse_proxy localhost:8636
      '';
      "recipes.jolheiser.com".extraConfig = ''
        reverse_proxy localhost:3663
      '';
    };
  };
}