traffic dns fix

This commit is contained in:
m3tam3re
2025-02-20 15:47:16 +01:00
parent 25b1fa76d7
commit 74d4940e27
9 changed files with 32 additions and 7 deletions

View File

@ -4,6 +4,13 @@
webhookUrl = "https://wf.m3tam3re.com";
};
systemd.services.n8n = {
environment = {
N8N_EDITOR_BASE_URL = "https://wf.m3tam3re.com";
N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS = "false";
};
};
# Traefik configuration specific to n8n
services.traefik.dynamicConfigOptions.http = {
services.n8n.loadBalancer.servers = [

View File

@ -11,6 +11,8 @@
caserver = "https://acme-v02.api.letsencrypt.org/directory";
dnsChallenge = {
provider = "godaddy";
resolvers = ["1.1.1.1:53" "8.8.8.8:53"];
propagation.delayBeforeChecks = 60;
};
};
};

View File

@ -63,7 +63,7 @@
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [neovim git];
environment.systemPackages = with pkgs; [neovim git n8n];
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.

View File

@ -6,6 +6,7 @@
systemd.services.n8n = {
environment = {
N8N_SECURE_COOKIE = "false";
N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS = "false";
};
};
}