Skip to content

Commit a022393

Browse files
committed
Merge branch '3.3' into fix-links-3.3
2 parents f99fcc0 + a67117b commit a022393

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/workflows/preview_comment.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
permissions:
1818
# Needed to manage the comment
1919
pull-requests: write
20+
# Needed to checkout private repositories
21+
contents: read
2022

2123
steps:
2224
- uses: actions/checkout@v4

docs/getting_started/requirements.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ Recommendation for production setups is to use Varnish/Fastly, Redis/Memcached,
268268

269269
## [[= product_name_cloud =]] requirements and setup
270270

271-
=== "Ibexa Cloud v4.6"
271+
=== "Ibexa DXP v4.6"
272272

273273
### Cloud hosting with Ibexa Cloud and Platform.sh
274274

@@ -315,7 +315,7 @@ Recommendation for production setups is to use Varnish/Fastly, Redis/Memcached,
315315
We recommend giving the development team working on the project access to the bucket
316316
to ensure work is done in a DevOps way without depending on external teams when changes are needed.
317317

318-
=== "Ibexa Cloud v3.3"
318+
=== "Ibexa DXP v3.3"
319319

320320
### Cloud hosting with Ibexa Cloud and Platform.sh
321321

docs/guide/cache/fastly.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -463,6 +463,11 @@ if (fastly.ff.visits_this_service == 0 && req.restarts == 0) {
463463
error 401 "Restricted";
464464
}
465465
}
466+
467+
# Unsetting req.http.Authorization to avoid reaching "return(pass)" in vcl_recv for the first ESI request
468+
if (req.is_esi_subreq) {
469+
unset req.http.Authorization;
470+
}
466471
```
467472
468473
To enable basic-auth for one domain only, alter `snippet_basic_auth_recv.vcl`:

mkdocs.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,6 @@ nav:
599599
- '8. Update REST': 'update_and_migration/from_2.5/update_code/8_update_rest.md'
600600
- '9. Other code updates': 'update_and_migration/from_2.5/update_code/9_update_other.md'
601601
- 'Update to v3.3': 'update_and_migration/from_2.5/to_3.3.md'
602-
- 'Update to latest v3.3': 'update_and_migration/from_3.3/update_from_3.3.md'
603602
- Update from v3.3:
604603
- 'Update to v3.3.latest': 'update_and_migration/from_3.3/update_from_3.3.md'
605604
- 'Update to v4.0': 'update_and_migration/from_3.3/to_4.0.md'

0 commit comments

Comments
 (0)