From ed6700be856f9a56a7f300fc268f682e8a6d03bb Mon Sep 17 00:00:00 2001 From: christiankrag Date: Mon, 15 Dec 2025 06:07:54 +0100 Subject: [PATCH] Add worker configs to allow n8n.mylder.io HTTP requests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - wws blocks external HTTP requests by default - Add index.toml with allowed_hosts for chat and webhook 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- chat/index.toml | 8 ++++++++ webhook/index.toml | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 chat/index.toml create mode 100644 webhook/index.toml diff --git a/chat/index.toml b/chat/index.toml new file mode 100644 index 0000000..4428b9f --- /dev/null +++ b/chat/index.toml @@ -0,0 +1,8 @@ +name = "chat" +version = "1" + +[features] +http_requests = true + +[features.http_requests] +allowed_hosts = ["n8n.mylder.io"] diff --git a/webhook/index.toml b/webhook/index.toml new file mode 100644 index 0000000..4d07d10 --- /dev/null +++ b/webhook/index.toml @@ -0,0 +1,8 @@ +name = "webhook" +version = "1" + +[features] +http_requests = true + +[features.http_requests] +allowed_hosts = ["n8n.mylder.io"]