infra/puter/030-vm-nixos-neru/specific-aspect/repo-website/nginx-repo.nix

18 lines
413 B
Nix
Raw Permalink Normal View History

2025-12-01 13:23:24 +07:00
{
den.aspects = {
neru = {
nixos = {
services.nginx = {
virtualHosts."repo.experimenting.website" = {
forceSSL = true;
enableACME = true;
extraConfig = ''
client_max_body_size 512M;
'';
locations."/".proxyPass = "http://localhost:3000";
};
};
};
};
};
}