fixes to n8n config

This commit is contained in:
Noah Masur 2024-05-07 23:46:03 -04:00
parent 7ce9ed564e
commit 48fbb2e2d9
No known key found for this signature in database

View File

@ -10,10 +10,8 @@
services.n8n = {
settings = {
n8n = {
listenAddress = "127.0.0.1";
port = 5678;
};
listen_address = "127.0.0.1";
port = 5678;
};
};
@ -27,7 +25,7 @@
handle = [
{
handler = "reverse_proxy";
upstreams = [ { dial = "localhost:${builtins.toString config.services.n8n.settings.n8n.port}"; } ];
upstreams = [ { dial = "localhost:${builtins.toString config.services.n8n.settings.port}"; } ];
}
];
}