lab-infra/machines/homebox01/homebox.nix

16 lines
325 B
Nix

{ sources, ... }:
{
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/";
};
}