feat(ops/nixos/www): create login.tvl.fyi host

Change-Id: Ifad80915a61a1a5ac14e598a9d788aec3482693c
Reviewed-on: https://cl.tvl.fyi/c/depot/+/936
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
This commit is contained in:
Luke Granger-Brown 2020-07-06 22:18:43 +00:00 committed by lukegb
parent 310302637b
commit aae3d25234
3 changed files with 43 additions and 0 deletions

14
ops/nixos/www/base.nix Normal file
View file

@ -0,0 +1,14 @@
{ config, ... }:
{
config = {
services.nginx = {
enable = true;
enableReload = true;
recommendedTlsSettings = true;
recommendedGzipSettings = true;
recommendedProxySettings = true;
};
};
}