Constantin Gierczak--Galle
1b8dc4d78a
Reviewed-on: #10 Co-authored-by: Constantin Gierczak--Galle <git.cst1@mailbox.org> Co-committed-by: Constantin Gierczak--Galle <git.cst1@mailbox.org>
14 lines
311 B
Nix
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/";
|
|
};
|
|
}
|