lab-infra/machines/homebox01/homebox.nix
Constantin Gierczak--Galle 8445a860c1
Some checks failed
lint / check (push) Successful in 22s
lint / check (pull_request) Successful in 24s
Check meta / check_meta (pull_request) Failing after 27s
build configuration / build_krz01 (pull_request) Failing after 1m30s
fix: fmt
2024-12-05 10:58:24 +01:00

14 lines
306 B
Nix

{
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/";
};
}