renamed hetzner-multi to cirrus.

This commit is contained in:
Gabe Venberg 2024-07-29 12:34:24 -05:00
parent 511b8332ed
commit 6dcbb146b7
4 changed files with 5 additions and 4 deletions

19
hosts/cirrus/nginx.nix Normal file
View file

@ -0,0 +1,19 @@
{
inputs,
config,
pkgs,
lib,
...
}: {
imports = [
../../configs/nixos/nginx.nix
];
services.nginx.virtualHosts."cal.venberg.xyz" = {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://localhost:5232";
};
};
networking.firewall.allowedTCPPorts = [443 80];
}