renamed rockhole to cumulus.
This commit is contained in:
parent
5b7d31e5b0
commit
e0b78f921f
6 changed files with 5 additions and 5 deletions
21
hosts/cumulus/nginx.nix
Normal file
21
hosts/cumulus/nginx.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
inputs,
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
../../configs/nixos/nginx.nix
|
||||
];
|
||||
|
||||
# For non-nix home assistant.
|
||||
services.nginx.virtualHosts."home.venberg.xyz" = {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://10.10.0.3:8123";
|
||||
proxyWebsockets = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue