2021-12-07 20:51:25 +02:00
|
|
|
{ config, lib, tools, ... }:
|
|
|
|
let
|
|
|
|
inherit (tools.meta) domain;
|
|
|
|
apiAddr = "api.${domain}";
|
2022-06-18 03:44:51 +03:00
|
|
|
proxyTarget = config.links.api.url;
|
2021-12-07 20:51:25 +02:00
|
|
|
proxy = tools.nginx.vhosts.proxy proxyTarget;
|
|
|
|
in
|
|
|
|
{
|
2022-05-30 23:33:12 +03:00
|
|
|
# n8n uses "Sustainable Use License"
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
|
2022-06-18 03:44:51 +03:00
|
|
|
links.api.protocol = "http";
|
2021-12-07 20:51:25 +02:00
|
|
|
|
|
|
|
services.n8n = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
2022-06-18 03:44:51 +03:00
|
|
|
inherit (config.links.api) port;
|
2021-12-07 20:51:25 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
systemd.services.n8n.environment = {
|
|
|
|
N8N_LISTEN_ADDRESS = "127.0.0.1";
|
|
|
|
N8N_ENDPOINT_WEBHOOK = "api";
|
|
|
|
N8N_ENDPOINT_WEBHOOK_TEST = "test";
|
|
|
|
WEBHOOK_URL = "https://${apiAddr}";
|
|
|
|
};
|
|
|
|
|
|
|
|
services.nginx.virtualHosts."${apiAddr}" = lib.recursiveUpdate proxy {
|
|
|
|
locations."/api" = {
|
|
|
|
proxyPass = proxyTarget;
|
|
|
|
extraConfig = "auth_request off;";
|
|
|
|
};
|
|
|
|
locations."/test" = {
|
|
|
|
proxyPass = proxyTarget;
|
|
|
|
extraConfig = "auth_request off;";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
services.oauth2_proxy.nginx.virtualHosts = [ apiAddr ];
|
|
|
|
}
|