moved gabevenberg.com to cirrus.

This commit is contained in:
Gabe Venberg 2025-03-20 12:56:37 +01:00
parent 210bf5c415
commit fb61db7011
4 changed files with 9 additions and 6 deletions

View file

@ -1,25 +0,0 @@
{
inputs,
config,
pkgs,
lib,
...
}: {
imports = [
../../configs/nixos/nginx.nix
];
services.nginx.clientMaxBodySize = "100m";
services.nginx.virtualHosts = {
"gabevenberg.com" = {
enableACME = true;
forceSSL = true;
root = "/var/www/gabevenberg.com";
};
"draft.gabevenberg.com" = {
enableACME = true;
forceSSL = true;
root = "/var/www/draft.gabevenberg.com";
basicAuthFile = config.sops.secrets.gabevenberg-draft-credentials.path;
};
};
}