lab-infra/machines/homebox01/homebox.nix
Constantin Gierczak--Galle 8e35fe9b2b
Some checks failed
Check meta / check_meta (push) Failing after 18s
lint / check (push) Successful in 23s
Check meta / check_meta (pull_request) Failing after 19s
lint / check (pull_request) Successful in 24s
build configuration / build_krz01 (pull_request) Failing after 1m35s
feat(dns01): bootstrap DNS
2024-12-07 13:10:13 +01:00

14 lines
311 B
Nix

{
services.homebox = {
enable = true;
settings = {
HBOX_OPTIONS_ALLOW_REGISTRATION = "false";
};
};
services.nginx.virtualHosts."homebox.lab.dgnum.eu" = {
enableACME = true;
forceSSL = true;
serverAliases = [ ];
locations."/".proxyPass = "http://localhost:7745/";
};
}