From e187a7bcb18ade669e276473b277edcd01f1babb Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Tue, 5 Sep 2023 01:19:55 +0300 Subject: feat(ops/modules): deploy //web/pwcrypt to signup.tvl.fyi I verified on whitby that the password hashes generated by //web/pwcrypt are compatible with our OpenLDAP, so it's time to make this thing public. Change-Id: Icc2f095ca7ce4acff6de91a1642dea6461177423 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9266 Tested-by: BuildkiteCI Reviewed-by: flokli Autosubmit: tazjin --- ops/modules/www/signup.tvl.fyi.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 ops/modules/www/signup.tvl.fyi.nix (limited to 'ops/modules') diff --git a/ops/modules/www/signup.tvl.fyi.nix b/ops/modules/www/signup.tvl.fyi.nix new file mode 100644 index 0000000000..1b193f99a9 --- /dev/null +++ b/ops/modules/www/signup.tvl.fyi.nix @@ -0,0 +1,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; + ''; + }; + }; +} -- cgit 1.4.1