lab-infra/machines/homebox01/homebox.nix

15 lines
306 B
Nix
Raw Normal View History

2024-12-05 10:57:36 +01:00
{
services.homebox = {
enable = true;
settings = {
HBOX_OPTIONS_ALLOW_REGISTRATION = "true";
};
};
services.nginx.virtualHosts."homebox.cgiga.fr" = {
enableACME = true;
forceSSL = true;
serverAliases = [ ];
locations."/".proxyPass = "http://localhost:7745/";
};
}