Add worker configs to allow n8n.mylder.io HTTP requests

- 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 <noreply@anthropic.com>
This commit is contained in:
2025-12-15 06:07:54 +01:00
parent 030bf007cc
commit ed6700be85
2 changed files with 16 additions and 0 deletions

8
chat/index.toml Normal file
View File

@@ -0,0 +1,8 @@
name = "chat"
version = "1"
[features]
http_requests = true
[features.http_requests]
allowed_hosts = ["n8n.mylder.io"]

8
webhook/index.toml Normal file
View File

@@ -0,0 +1,8 @@
name = "webhook"
version = "1"
[features]
http_requests = true
[features.http_requests]
allowed_hosts = ["n8n.mylder.io"]