m3-atlas: n8n - nixos, ghost update

This commit is contained in:
m3tam3re
2025-04-16 14:06:02 +02:00
parent 9b6e6a6992
commit 01a2cbc808
7 changed files with 42 additions and 16 deletions

View File

@ -0,0 +1,24 @@
{
services.n8n = {
enable = true;
webhookUrl = "https://wf.m3tam3re.com";
};
# Traefik configuration specific to n8n
services.traefik.dynamicConfigOptions.http = {
services.n8n.loadBalancer.servers = [
{
url = "http://localhost:5678/";
}
];
routers.n8n = {
rule = "Host(`wf.m3tam3re.com`)";
tls = {
certResolver = "godaddy";
};
service = "n8n";
entrypoints = "websecure";
};
};
}