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

{
  imports = [
    ./base.nix
  ];

  config = {
    services.nginx.virtualHosts."tvl.su" = {
      serverName = "tvl.su";
      root = depot.corp.website;
      enableACME = true;
      forceSSL = true;

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