From a9f84918916ff722840173486c0ca37e71ef94a1 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Wed, 28 Feb 2024 23:12:36 +0300 Subject: feat(ops/sanduny): deploy volgasprint.org Change-Id: I5058e78ee3d7c26f2abafedeb5c0fb9d55a4da6a Reviewed-on: https://cl.tvl.fyi/c/depot/+/11066 Tested-by: BuildkiteCI Autosubmit: tazjin Reviewed-by: Mark Shevchenko --- ops/modules/www/volgasprint.org.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ops/modules/www/volgasprint.org.nix (limited to 'ops/modules') diff --git a/ops/modules/www/volgasprint.org.nix b/ops/modules/www/volgasprint.org.nix new file mode 100644 index 0000000000..7e5abe5561 --- /dev/null +++ b/ops/modules/www/volgasprint.org.nix @@ -0,0 +1,15 @@ +{ depot, ... }: + +{ + imports = [ + ./base.nix + ]; + + config = { + services.nginx.virtualHosts."volgasprint.org" = { + enableACME = true; + forceSSL = true; + root = "${depot.web.volgasprint}"; + }; + }; +} -- cgit 1.4.1