Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -462,6 +462,11 @@
error 401 "Restricted";
}
}

# 1st ESI request still has req.http.Authorization set - making the request uncacheable

Check warning on line 466 in docs/infrastructure_and_maintenance/cache/http_cache/fastly.md

View workflow job for this annotation

GitHub Actions / vale

[vale] docs/infrastructure_and_maintenance/cache/http_cache/fastly.md#L466

[Ibexa.EOLWhitespace] Remove whitespace characters from the end of the line.
Raw output
{"message": "[Ibexa.EOLWhitespace] Remove whitespace characters from the end of the line.", "location": {"path": "docs/infrastructure_and_maintenance/cache/http_cache/fastly.md", "range": {"start": {"line": 466, "column": 88}}}, "severity": "WARNING"}
if (req.is_esi_subreq) {
unset req.http.Authorization;
}
```
To enable basic-auth for one domain only, alter `snippet_basic_auth_recv.vcl`:
Expand Down
Loading