Skip to content

Commit 2414409

Browse files
committed
Fix curl command to properly show headers
1 parent 2eda9b7 commit 2414409

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/content/docs/speed/troubleshooting/slow-website.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Before troubleshooting performance, confirm that your traffic is actually going
2424
Every response served through Cloudflare includes a `cf-ray` header. Use `curl` to check:
2525

2626
```bash
27-
curl -sI https://www.example.com | grep -i cf-ray
27+
curl -s -D- -o /dev/null https://www.example.com | grep -i cf-ray
2828
```
2929

3030
If you see a `cf-ray` header (for example, `cf-ray: 8a1b2c3d4e5f6g7h-SJC`), your traffic is going through Cloudflare. If not, check your DNS configuration.

0 commit comments

Comments
 (0)