about summary refs log blame commit diff
path: root/ops/nixos/www/cl.tvl.fyi.nix
blob: d0aac1b0980fbe8fcd61b03cc3502091ba6d13d7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                          
                                      






                                                         

                                                                            




         
{ config, ... }:

{
  imports = [
    ./base.nix
  ];

  config = {
    services.nginx.virtualHosts.gerrit = {
      serverName = "cl.tvl.fyi";
      serverAliases = [ "cl.tvl.su" ];
      enableACME = true;
      forceSSL = true;

      extraConfig = ''
        location / {
          proxy_pass http://localhost:4778;
          proxy_set_header  X-Forwarded-For $remote_addr;
          # The :443 suffix is a workaround for https://b.tvl.fyi/issues/88.
          proxy_set_header  Host $host:443;
        }
      '';
    };
  };
}