mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-03-25 21:30:52 +01:00
42 lines
984 B
Nix
42 lines
984 B
Nix
inputs: final: _prev:
|
|
|
|
with builtins;
|
|
|
|
{
|
|
importConfig = path: (mapAttrs (name: _value: import (path + "/${name}/default.nix")) (final.filterAttrs (_: v: v == "directory") (readDir path)));
|
|
|
|
mkSubdomain = name: port: {
|
|
luj.nginx.enable = true;
|
|
services.nginx.virtualHosts."${name}.julienmalka.me" = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
locations."/" = {
|
|
proxyPass = "http://localhost:${toString port}";
|
|
};
|
|
};
|
|
};
|
|
|
|
mkVPNSubdomain = name: port: {
|
|
luj.nginx.enable = true;
|
|
security.acme.certs."${name}.luj".server = "https://ca.luj/acme/acme/directory";
|
|
services.nginx.virtualHosts."${name}.luj" = {
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
locations."/" = {
|
|
proxyPass = "http://localhost:${toString port}";
|
|
extraConfig = ''
|
|
allow 100.100.45.0/24;
|
|
allow fd7a:115c:a1e0::/48;
|
|
deny all;
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
luj = import ./luj.nix inputs final;
|
|
|
|
}
|
|
|