Route pattern must include zone name [code: 10022]

I am using Cloudflare for SAAS so I have customer domains point to like customers.mydomain.com When I deploy my worker I have the routes like the following in my config file:
"routes": [
{
"pattern": "*/hello-world*",
"zone_name": "mydomain.com"
}
]
"routes": [
{
"pattern": "*/hello-world*",
"zone_name": "mydomain.com"
}
]
I get the error that Route pattern must include zone name: mydomain.com [code: 10022] when I am trying to deploy. The problem is if I change the pattern to include the mydomain.com it won't catch for my customer's domains. What can I do?
26 Replies
Walshy
Walshy4w ago
Remove zone_name
jjjrmy
jjjrmyOP4w ago
Cloudflare Docs
Configuration - Wrangler · Cloudflare Workers docs
Use a configuration file to customize the development and deployment setup for your Worker project and other Developer Platform products.
jjjrmy
jjjrmyOP4w ago
@Walshy | Workers/Pages I even get error if I don't include it
No description
Walshy
Walshy4w ago
Actually yeah no sorry, that won't work. Let me remember when we fire this...
jjjrmy
jjjrmyOP4w ago
here is the actual error route
✘ [ERROR] A request to the Cloudflare API (/accounts/***/workers/scripts/start-here-production/routes) failed.
Route pattern must include zone name: mydomain.com [code: 10022]
✘ [ERROR] A request to the Cloudflare API (/accounts/***/workers/scripts/start-here-production/routes) failed.
Route pattern must include zone name: mydomain.com [code: 10022]
I can't even find that route in the docs, and it works fine on the dashboard itself when I add it from within the Worker
PATCH: https://dash.cloudflare.com/api/v4/accounts/$ACCOUNT_ID/workers/services/$SCRIPT_NAME/environments/production/routes
PATCH: https://dash.cloudflare.com/api/v4/accounts/$ACCOUNT_ID/workers/services/$SCRIPT_NAME/environments/production/routes
[
{
"pattern": "*/hello-world*",
"zone_name": "mydomain.com"
}
]
[
{
"pattern": "*/hello-world*",
"zone_name": "mydomain.com"
}
]
this is what happens on the dashboard and it works fine.
Walshy
Walshy4w ago
what call wrangler doing? WRANGLER_LOG=debug to see the api calls
jjjrmy
jjjrmyOP4w ago
you want me to add that to my wrangler call? I'm doing this all in my github action using cloudflare/wrangler-action@v3 this is the call Wrangler is trying to do
Walshy
Walshy4w ago
works fine for me on latest wrangler
$ npx wrangler deploy

⛅️ wrangler 3.114.0
--------------------

▲ [WARNING] Warning: The following routes will attempt to serve Assets on a configured path:

• */abc* (Will match assets: public/abc*)

Requests not matching an asset will be forwarded to the Worker's code.


🌀 Building list of assets...
🌀 Starting asset upload...
No files to upload. Proceeding with deployment...
Total Upload: 0.17 KiB / gzip: 0.15 KiB
No bindings found.
Uploaded workers-assets (8.60 sec)
Deployed workers-assets triggers (3.99 sec)
*/abc* (zone name: example.walshy.dev)
Current Version ID: 04d51a00-169b-4cc0-ab8c-6c4c0854b3ab

$ cat wrangler.toml
name = "workers-assets"
compatibility_date = "2024-08-30"
main = "src/index.ts"
account_id = "4e599df4216133509abaac54b109a647"
routes = [
{ pattern = "*/abc*", zone_name = "example.walshy.dev" }
]

[assets]
directory = "./public"
binding = "ASSETS"
$ npx wrangler deploy

⛅️ wrangler 3.114.0
--------------------

▲ [WARNING] Warning: The following routes will attempt to serve Assets on a configured path:

• */abc* (Will match assets: public/abc*)

Requests not matching an asset will be forwarded to the Worker's code.


🌀 Building list of assets...
🌀 Starting asset upload...
No files to upload. Proceeding with deployment...
Total Upload: 0.17 KiB / gzip: 0.15 KiB
No bindings found.
Uploaded workers-assets (8.60 sec)
Deployed workers-assets triggers (3.99 sec)
*/abc* (zone name: example.walshy.dev)
Current Version ID: 04d51a00-169b-4cc0-ab8c-6c4c0854b3ab

$ cat wrangler.toml
name = "workers-assets"
compatibility_date = "2024-08-30"
main = "src/index.ts"
account_id = "4e599df4216133509abaac54b109a647"
routes = [
{ pattern = "*/abc*", zone_name = "example.walshy.dev" }
]

[assets]
directory = "./public"
binding = "ASSETS"
jjjrmy
jjjrmyOP4w ago
can yo utry it with the routes stuff inside like env.staging key that's the only diff I see (besides me using jsonc file instead of toml`
Walshy
Walshy4w ago
env doesn't matter here:
$ npx wrangler deploy -e dev

⛅️ wrangler 3.114.0
--------------------

▲ [WARNING] Warning: The following routes will attempt to serve Assets on a configured path:

• */dev* (Will match assets: public/dev*)

Requests not matching an asset will be forwarded to the Worker's code.


🌀 Building list of assets...
🌀 Starting asset upload...
🌀 Found 3 new or modified static assets to upload. Proceeding with upload...
+ /test.html
+ /index.html
+ /blog/index.html
Uploaded 1 of 3 assets
Uploaded 2 of 3 assets
Uploaded 3 of 3 assets
✨ Success! Uploaded 3 files (1.16 sec)

Total Upload: 0.17 KiB / gzip: 0.15 KiB
No bindings found.
Uploaded workers-assets-dev (10.43 sec)

Deployed workers-assets-dev triggers (3.02 sec)
*/dev* (zone name: example.walshy.dev)
Current Version ID: 9331f8b4-766e-499a-b511-6ccabb4214d5

$ cat wrangler.toml
name = "workers-assets"
compatibility_date = "2024-08-30"
main = "src/index.ts"
account_id = "4e599df4216133509abaac54b109a647"
routes = [
{ pattern = "*/abc*", zone_name = "example.walshy.dev" }
]

[assets]
directory = "./public"
binding = "ASSETS"

[env.dev]
routes = [
{ pattern = "*/dev*", zone_name = "example.walshy.dev" }
]
$ npx wrangler deploy -e dev

⛅️ wrangler 3.114.0
--------------------

▲ [WARNING] Warning: The following routes will attempt to serve Assets on a configured path:

• */dev* (Will match assets: public/dev*)

Requests not matching an asset will be forwarded to the Worker's code.


🌀 Building list of assets...
🌀 Starting asset upload...
🌀 Found 3 new or modified static assets to upload. Proceeding with upload...
+ /test.html
+ /index.html
+ /blog/index.html
Uploaded 1 of 3 assets
Uploaded 2 of 3 assets
Uploaded 3 of 3 assets
✨ Success! Uploaded 3 files (1.16 sec)

Total Upload: 0.17 KiB / gzip: 0.15 KiB
No bindings found.
Uploaded workers-assets-dev (10.43 sec)

Deployed workers-assets-dev triggers (3.02 sec)
*/dev* (zone name: example.walshy.dev)
Current Version ID: 9331f8b4-766e-499a-b511-6ccabb4214d5

$ cat wrangler.toml
name = "workers-assets"
compatibility_date = "2024-08-30"
main = "src/index.ts"
account_id = "4e599df4216133509abaac54b109a647"
routes = [
{ pattern = "*/abc*", zone_name = "example.walshy.dev" }
]

[assets]
directory = "./public"
binding = "ASSETS"

[env.dev]
routes = [
{ pattern = "*/dev*", zone_name = "example.walshy.dev" }
]
jjjrmy
jjjrmyOP4w ago
... okay let me see what might be diff in my wrangler file
Walshy
Walshy4w ago
working fine with json too:
$ npx wrangler deploy -c wrangler.json

⛅️ wrangler 3.114.0
--------------------

▲ [WARNING] Warning: The following routes will attempt to serve Assets on a configured path:

• */abc* (Will match assets: public/abc*)

Requests not matching an asset will be forwarded to the Worker's code.


🌀 Building list of assets...
🌀 Starting asset upload...
No files to upload. Proceeding with deployment...
Total Upload: 0.17 KiB / gzip: 0.15 KiB
No bindings found.
Uploaded workers-assets (8.81 sec)
Deployed workers-assets triggers (4.53 sec)
*/abc* (zone name: example.walshy.dev)
Current Version ID: 8e9fc6bf-502b-4c38-824b-78db3276c56f

$ cat wrangler.json
{
"account_id": "4e599df4216133509abaac54b109a647",
"compatibility_date": "2024-08-30",
"main": "src/index.ts",
"name": "workers-assets",
"routes": [
{
"pattern": "*/abc*",
"zone_name": "example.walshy.dev"
}
],
"assets": {
"binding": "ASSETS",
"directory": "./public"
},
"env": {
"dev": {
"routes": [
{
"pattern": "*/dev*",
"zone_name": "example.walshy.dev"
}
]
}
}
}
$ npx wrangler deploy -c wrangler.json

⛅️ wrangler 3.114.0
--------------------

▲ [WARNING] Warning: The following routes will attempt to serve Assets on a configured path:

• */abc* (Will match assets: public/abc*)

Requests not matching an asset will be forwarded to the Worker's code.


🌀 Building list of assets...
🌀 Starting asset upload...
No files to upload. Proceeding with deployment...
Total Upload: 0.17 KiB / gzip: 0.15 KiB
No bindings found.
Uploaded workers-assets (8.81 sec)
Deployed workers-assets triggers (4.53 sec)
*/abc* (zone name: example.walshy.dev)
Current Version ID: 8e9fc6bf-502b-4c38-824b-78db3276c56f

$ cat wrangler.json
{
"account_id": "4e599df4216133509abaac54b109a647",
"compatibility_date": "2024-08-30",
"main": "src/index.ts",
"name": "workers-assets",
"routes": [
{
"pattern": "*/abc*",
"zone_name": "example.walshy.dev"
}
],
"assets": {
"binding": "ASSETS",
"directory": "./public"
},
"env": {
"dev": {
"routes": [
{
"pattern": "*/dev*",
"zone_name": "example.walshy.dev"
}
]
}
}
}
what wrangler ver are you using?
jjjrmy
jjjrmyOP4w ago
still not working for me - here is my full json file @Walshy | Workers/Pages
{
"compatibility_flags": [
"nodejs_compat"
],
"env": {
"staging": {
"vars": {},
"routes": [
{
"pattern": "*/start-here/*",
"zone_name": "staging--ultron-workers.cloud"
}
]
},
"production": {
"vars": {},
"routes": [
{
"pattern": "*/start-here/*",
"zone_name": "ultron-workers.cloud"
}
]
}
},
"$schema": "node_modules/wrangler/config-schema.json",
"name": "start-here",
"main": "src/index.ts",
"compatibility_date": "2025-03-09"
}
{
"compatibility_flags": [
"nodejs_compat"
],
"env": {
"staging": {
"vars": {},
"routes": [
{
"pattern": "*/start-here/*",
"zone_name": "staging--ultron-workers.cloud"
}
]
},
"production": {
"vars": {},
"routes": [
{
"pattern": "*/start-here/*",
"zone_name": "ultron-workers.cloud"
}
]
}
},
"$schema": "node_modules/wrangler/config-schema.json",
"name": "start-here",
"main": "src/index.ts",
"compatibility_date": "2025-03-09"
}
🚀 Running Wrangler Commands
/usr/local/bin/npx wrangler deploy --env production
⛅️ wrangler 3.114.0
--------------------
Total Upload: 71.13 KiB / gzip: 16.63 KiB
Worker Startup Time: 12 ms
Your worker has access to the following bindings:
Uploaded start-here-production (10.15 sec)
✘ [ERROR] A request to the Cloudflare API (/accounts/***/workers/scripts/start-here-production/routes) failed.
Route pattern must include zone name: ultron-workers.cloud [code: 10022]
🚀 Running Wrangler Commands
/usr/local/bin/npx wrangler deploy --env production
⛅️ wrangler 3.114.0
--------------------
Total Upload: 71.13 KiB / gzip: 16.63 KiB
Worker Startup Time: 12 ms
Your worker has access to the following bindings:
Uploaded start-here-production (10.15 sec)
✘ [ERROR] A request to the Cloudflare API (/accounts/***/workers/scripts/start-here-production/routes) failed.
Route pattern must include zone name: ultron-workers.cloud [code: 10022]
3.114.0
Walshy
Walshy4w ago
hmm your config works fine for me :meowupsidedown:
$ npx wrangler deploy -e production -c wrangler.json

⛅️ wrangler 3.114.0
--------------------

✔ Select an account › Walshy - MVP/Champ/DevEx
Total Upload: 23.76 KiB / gzip: 5.44 KiB
Worker Startup Time: 11 ms
No bindings found.
Uploaded start-here-production (3.82 sec)
Deployed start-here-production triggers (5.65 sec)
*/start-here/* (zone name: example.walshy.dev)
Current Version ID: d8956571-1e11-4c94-baab-4665c54e1209

$ cat wrangler.json
{
"compatibility_flags": [
"nodejs_compat"
],
"env": {
"staging": {
"vars": {},
"routes": [
{
"pattern": "*/start-here/*",
"zone_name": "staging--ultron-workers.cloud"
}
]
},
"production": {
"vars": {},
"routes": [
{
"pattern": "*/start-here/*",
"zone_name": "example.walshy.dev"
}
]
}
},
"$schema": "node_modules/wrangler/config-schema.json",
"name": "start-here",
"main": "src/index.ts",
"compatibility_date": "2025-03-09"
}
$ npx wrangler deploy -e production -c wrangler.json

⛅️ wrangler 3.114.0
--------------------

✔ Select an account › Walshy - MVP/Champ/DevEx
Total Upload: 23.76 KiB / gzip: 5.44 KiB
Worker Startup Time: 11 ms
No bindings found.
Uploaded start-here-production (3.82 sec)
Deployed start-here-production triggers (5.65 sec)
*/start-here/* (zone name: example.walshy.dev)
Current Version ID: d8956571-1e11-4c94-baab-4665c54e1209

$ cat wrangler.json
{
"compatibility_flags": [
"nodejs_compat"
],
"env": {
"staging": {
"vars": {},
"routes": [
{
"pattern": "*/start-here/*",
"zone_name": "staging--ultron-workers.cloud"
}
]
},
"production": {
"vars": {},
"routes": [
{
"pattern": "*/start-here/*",
"zone_name": "example.walshy.dev"
}
]
}
},
"$schema": "node_modules/wrangler/config-schema.json",
"name": "start-here",
"main": "src/index.ts",
"compatibility_date": "2025-03-09"
}
jjjrmy
jjjrmyOP4w ago
hmm could it be because I didn't setup Cloudflare Saas yet on the domain?
Chaika
Chaika4w ago
yea, you need cf for saas enabled on the zone or you'll get that error if not including the zone name
jjjrmy
jjjrmyOP4w ago
okay sec - let me try again
Walshy
Walshy4w ago
ah yes probably should have asked that first :LuL: I forget about us doing stuff on ssl for saas usage
jjjrmy
jjjrmyOP4w ago
yes now it works
Chaika
Chaika4w ago
it would be cool if that error message maybe included that
jjjrmy
jjjrmyOP4w ago
yes please. I was a bit lost. but it is working now!
Walshy
Walshy4w ago
yeah, if we see host == * and no entitlement we should error better let me cut a ticket
jjjrmy
jjjrmyOP4w ago
okay great great great! thanks again guys - it is working and confirmed in my dashboard while you're at it - update the wrangler github action to use a higher version of wrangler so we don't have to manually set it 😋
Walshy
Walshy4w ago
i actually don't have perms on that repo anymore
jjjrmy
jjjrmyOP4w ago
👀 uh oh
Walshy
Walshy4w ago
https://github.com/cloudflare/wrangler-action/pull/238 could update this though i'll cut another ticket :p

Did you find this page helpful?