pepe: add nginx for home-assistant

This commit is contained in:
Ingolf Wagner 2020-04-09 01:19:00 +02:00
parent 5598ec5c5c
commit 4df3c4ae8c
No known key found for this signature in database
GPG key ID: 76BF5F1928B9618B

View file

@ -210,4 +210,21 @@ in {
};
# host nginx setup
services.nginx = {
enable = true;
recommendedProxySettings = true;
virtualHosts = {
"iot.pepe.private" = {
serverAliases = [
"hass.pepe.private"
"home.pepe.private"
];
locations."/" = {
proxyPass = "http://pepe.private:8123";
};
};
};
};
}