Compare commits

..

No commits in common. "45ec4e5a3f6db88ce09a2aa40a3ac94dd36476fe" and "7ce9ed564ec31bc89960f4f2df3eb7b43cb466cc" have entirely different histories.

2 changed files with 6 additions and 4 deletions

View File

@ -17,7 +17,7 @@ data "aws_s3_object" "image" {
}
resource "terraform_data" "image_replacement" {
input = data.aws_s3_object.image.etag
input = data.aws_s3_object.image.checksum_sha256
}
# Setup IAM access for the VM Importer

View File

@ -10,10 +10,12 @@
services.n8n = {
settings = {
listen_address = "127.0.0.1";
n8n = {
listenAddress = "127.0.0.1";
port = 5678;
};
};
};
# Configure Cloudflare DNS to point to this machine
services.cloudflare-dyndns.domains = [ config.hostnames.n8n ];
@ -25,7 +27,7 @@
handle = [
{
handler = "reverse_proxy";
upstreams = [ { dial = "localhost:${builtins.toString config.services.n8n.settings.port}"; } ];
upstreams = [ { dial = "localhost:${builtins.toString config.services.n8n.settings.n8n.port}"; } ];
}
];
}