187 lines
5.9 KiB
Nix
187 lines
5.9 KiB
Nix
{
|
|
config,
|
|
nodes,
|
|
lib,
|
|
globals,
|
|
...
|
|
}:
|
|
let
|
|
ipOf = name: nodes.${globals.services.${name}.host}.config.wireguard.services.ipv4;
|
|
in
|
|
{
|
|
wireguard.services = {
|
|
client.via = "nucnix";
|
|
};
|
|
services.netbird.server.proxy =
|
|
let
|
|
cfg = nodes.elisabeth-netbird.config.services.netbird.server;
|
|
in
|
|
{
|
|
domain = "${globals.services.netbird.domain}";
|
|
enable = true;
|
|
enableNginx = true;
|
|
signalAddress = "${nodes.elisabeth-netbird.config.wireguard.services.ipv4}:${toString cfg.signal.port}";
|
|
relayAddress = "${nodes.elisabeth-netbird.config.wireguard.services.ipv4}:${toString cfg.relay.port}";
|
|
managementAddress = "${nodes.elisabeth-netbird.config.wireguard.services.ipv4}:${toString cfg.management.port}";
|
|
dashboardAddress = "${nodes.elisabeth-netbird.config.wireguard.services.ipv4}:80";
|
|
};
|
|
services.nginx =
|
|
let
|
|
blockOf =
|
|
hostName:
|
|
{
|
|
virtualHostExtraConfig ? "",
|
|
maxBodySize ? "500M",
|
|
port ? 3000,
|
|
upstream ? hostName,
|
|
protocol ? "http",
|
|
...
|
|
}:
|
|
{
|
|
upstreams.${hostName} = {
|
|
servers."${ipOf upstream}:${toString port}" = { };
|
|
extraConfig = ''
|
|
zone ${hostName} 64k ;
|
|
keepalive 5 ;
|
|
'';
|
|
};
|
|
virtualHosts.${globals.services.${hostName}.domain} = {
|
|
forceSSL = true;
|
|
useACMEHost = "web";
|
|
locations."/" = {
|
|
proxyPass = "${protocol}://${hostName}";
|
|
proxyWebsockets = true;
|
|
X-Frame-Options = "SAMEORIGIN";
|
|
};
|
|
extraConfig =
|
|
''
|
|
client_max_body_size ${maxBodySize} ;
|
|
''
|
|
+ virtualHostExtraConfig;
|
|
};
|
|
};
|
|
proxyProtect =
|
|
hostName:
|
|
{
|
|
allowedGroup ? true,
|
|
...
|
|
}@cfg:
|
|
lib.mkMerge [
|
|
(blockOf hostName cfg)
|
|
{
|
|
virtualHosts.${globals.services.${hostName}.domain} = {
|
|
locations."/".extraConfig = ''
|
|
auth_request /oauth2/auth;
|
|
error_page 401 = /oauth2/sign_in;
|
|
|
|
# pass information via X-User and X-Email headers to backend,
|
|
# requires running with --set-xauthrequest flag
|
|
auth_request_set $user $upstream_http_x_auth_request_preferred_username;
|
|
# Set the email to our own domain in case user change their mail
|
|
auth_request_set $email "''${upstream_http_x_auth_request_preferred_username}@${globals.domains.web}";
|
|
proxy_set_header X-User $user;
|
|
proxy_set_header X-Email $email;
|
|
|
|
# if you enabled --cookie-refresh, this is needed for it to work with auth_request
|
|
auth_request_set $auth_cookie $upstream_http_set_cookie;
|
|
add_header Set-Cookie $auth_cookie;
|
|
'';
|
|
locations."/oauth2/" = {
|
|
proxyPass = "http://oauth2-proxy";
|
|
extraConfig = ''
|
|
proxy_set_header X-Scheme $scheme;
|
|
proxy_set_header X-Auth-Request-Redirect $scheme://$host$request_uri;
|
|
'';
|
|
};
|
|
|
|
locations."= /oauth2/auth" = {
|
|
proxyPass =
|
|
"http://oauth2-proxy/oauth2/auth"
|
|
+ lib.optionalString allowedGroup "?allowed_groups=${hostName}_access";
|
|
extraConfig = ''
|
|
internal;
|
|
|
|
proxy_set_header X-Scheme $scheme;
|
|
# nginx auth_request includes headers but not body
|
|
proxy_set_header Content-Length "";
|
|
proxy_pass_request_body off;
|
|
'';
|
|
};
|
|
};
|
|
}
|
|
];
|
|
in
|
|
lib.mkMerge [
|
|
{
|
|
enable = true;
|
|
recommendedSetup = true;
|
|
virtualHosts."${globals.services.netbird.domain}".useACMEHost = "web";
|
|
}
|
|
(blockOf "vaultwarden" { maxBodySize = "1G"; })
|
|
(blockOf "forgejo" { maxBodySize = "1G"; })
|
|
(blockOf "immich" {
|
|
maxBodySize = "5G";
|
|
virtualHostExtraConfig = ''
|
|
proxy_buffering off;
|
|
proxy_request_buffering off;
|
|
'';
|
|
})
|
|
(proxyProtect "adguardhome" { })
|
|
(proxyProtect "oauth2-proxy" { allowedGroup = false; })
|
|
(blockOf "paperless" { maxBodySize = "5G"; })
|
|
(proxyProtect "ttrss" { port = 80; })
|
|
(proxyProtect "invidious" { })
|
|
(blockOf "yourspotify" { port = 80; })
|
|
(blockOf "blog" { port = 80; })
|
|
(blockOf "homebox" { })
|
|
(proxyProtect "ollama" { })
|
|
(proxyProtect "firefly" { port = 80; })
|
|
(blockOf "apispotify" {
|
|
port = 3000;
|
|
upstream = "yourspotify";
|
|
})
|
|
(blockOf "nextcloud" {
|
|
maxBodySize = "5G";
|
|
port = 80;
|
|
})
|
|
(blockOf "kanidm" {
|
|
protocol = "https";
|
|
virtualHostExtraConfig = ''
|
|
proxy_ssl_verify off ;
|
|
'';
|
|
})
|
|
];
|
|
|
|
age.secrets.cloudflare_token_acme = {
|
|
rekeyFile = config.node.secretsDir + "/cloudflare_api_token.age";
|
|
mode = "440";
|
|
group = "acme";
|
|
};
|
|
security.acme = {
|
|
acceptTerms = true;
|
|
defaults = {
|
|
email = globals.accounts.email."1".address;
|
|
dnsProvider = "cloudflare";
|
|
dnsPropagationCheck = true;
|
|
reloadServices = [ "nginx" ];
|
|
credentialFiles = {
|
|
"CF_DNS_API_TOKEN_FILE" = config.age.secrets.cloudflare_token_acme.path;
|
|
"CF_ZONE_API_TOKEN_FILE" = config.age.secrets.cloudflare_token_acme.path;
|
|
};
|
|
};
|
|
};
|
|
security.acme.certs.web = {
|
|
domain = globals.domains.web;
|
|
extraDomainNames = [ "*.${globals.domains.web}" ];
|
|
};
|
|
users.groups.acme.members = [ "nginx" ];
|
|
environment.persistence."/state".directories = [
|
|
{
|
|
directory = "/var/lib/acme";
|
|
user = "acme";
|
|
group = "acme";
|
|
mode = "0755";
|
|
}
|
|
];
|
|
}
|