about summary refs log tree commit diff
path: root/ops/nixos/www/login.tvl.fyi.nix
blob: 8513c6e660c536db7ea78f8b2d1d9b9d47034a11 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ ... }:

{
  imports = [
    ./base.nix
  ];

  config = {
    services.nginx.virtualHosts."login.tvl.fyi" = {
      serverName = "login.tvl.fyi";
      enableACME = true;
      forceSSL = true;

      extraConfig = ''
        location / {
          proxy_pass http://localhost:8443;
          proxy_set_header X-Forwarded-For $remote_addr;
          proxy_set_header Host $host;
        }
      '';
    };
  };
}