refactor(home-assistant): move nginx config to home-assistant.nix
This commit is contained in:
parent
511c626df1
commit
9145766972
11
rpi4.nix
11
rpi4.nix
|
@ -57,17 +57,6 @@ with builtins; {
|
|||
recommendedOptimisation = true;
|
||||
recommendedGzipSettings = true;
|
||||
recommendedProxySettings = true;
|
||||
|
||||
virtualHosts = {
|
||||
${config.networking.domain} = {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://localhost:8123";
|
||||
proxyWebsockets = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
programs.zsh.enable = true;
|
||||
|
|
|
@ -19,6 +19,14 @@ in {
|
|||
proxyWebsockets = true;
|
||||
};
|
||||
};
|
||||
${config.networking.domain} = {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://localhost:8123";
|
||||
proxyWebsockets = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue