From d6c58818f968518f141ee2df2cfcb70b519cc111 Mon Sep 17 00:00:00 2001 From: christiankrag Date: Mon, 15 Dec 2025 06:09:42 +0100 Subject: [PATCH] Add allowed_methods to worker HTTP request configs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - wws requires both allowed_hosts and allowed_methods - Allow GET and POST methods for n8n.mylder.io 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- chat/index.toml | 3 +-- webhook/index.toml | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/chat/index.toml b/chat/index.toml index 4428b9f..9cd68c3 100644 --- a/chat/index.toml +++ b/chat/index.toml @@ -2,7 +2,6 @@ name = "chat" version = "1" [features] -http_requests = true - [features.http_requests] +allowed_methods = ["GET", "POST"] allowed_hosts = ["n8n.mylder.io"] diff --git a/webhook/index.toml b/webhook/index.toml index 4d07d10..b4b3293 100644 --- a/webhook/index.toml +++ b/webhook/index.toml @@ -2,7 +2,6 @@ name = "webhook" version = "1" [features] -http_requests = true - [features.http_requests] +allowed_methods = ["GET", "POST"] allowed_hosts = ["n8n.mylder.io"]