18 lines
No EOL
413 B
Nix
18 lines
No EOL
413 B
Nix
{
|
|
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";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
} |