renamed hetzner-multi to cirrus.
This commit is contained in:
parent
511b8332ed
commit
6dcbb146b7
4 changed files with 5 additions and 4 deletions
19
hosts/cirrus/nginx.nix
Normal file
19
hosts/cirrus/nginx.nix
Normal 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];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue