about summary refs log tree commit diff
path: root/ops/modules/www/signup.tvl.fyi.nix
blob: 1b193f99a9ed952ca9a8b666340610713416a28f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ depot, ... }:

{
  imports = [
    ./base.nix
  ];

  config = {
    services.nginx.virtualHosts."signup.tvl.fyi" = {
      root = depot.web.pwcrypt;
      enableACME = true;
      forceSSL = true;

      extraConfig = ''
        add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" always;
      '';
    };
  };
}