unused n8n setup

This commit is contained in:
Noah Masur 2022-11-21 01:04:22 +00:00
parent 7ddd9d9aa4
commit 52f9057ee5

21
modules/services/n8n.nix Normal file
View File

@ -0,0 +1,21 @@
{ ... }: {
services.n8n = {
enable = true;
settings = {
n8n = {
listenAddress = "127.0.0.1";
port = 5678;
};
};
};
caddyRoutes = [{
match = [{ host = [ config.n8nServer ]; }];
handle = [{
handler = "reverse_proxy";
upstreams = [{ dial = "localhost:5678"; }];
}];
}];
}