Skip to content

Commit

Permalink
IBX-8811: Rebranded SiteAccess session prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
konradoboza authored and alongosz committed Sep 13, 2024
1 parent 55cf51a commit 8548428
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/platformsh/common/5.0/.platform/varnish.vcl
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ sub vcl_recv {
if (req.http.cookie) {
set req.http.cookie = ";" + req.http.cookie;
set req.http.cookie = regsuball(req.http.cookie, "; +", ";");
set req.http.cookie = regsuball(req.http.cookie, ";(eZSESSID[^=]*)=", "; \1=");
set req.http.cookie = regsuball(req.http.cookie, ";(IBX_SESSION_ID[^=]*)=", "; \1=");
set req.http.cookie = regsuball(req.http.cookie, ";(ibexa-[^=]*)=", "; \1=");
set req.http.cookie = regsuball(req.http.cookie, ";[^ ][^;]*", "");
set req.http.cookie = regsuball(req.http.cookie, "^[; ]+|[; ]+$", "");
Expand Down

0 comments on commit 8548428

Please sign in to comment.