Skip to content

Commit 68e9664

Browse files
committed
updated vcl to reenable symfony profiler
1 parent bcc842c commit 68e9664

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/varnish/vcl/varnish5.vcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ sub vcl_recv {
5252
set req.http.cookie = ";" + req.http.cookie;
5353
set req.http.cookie = regsuball(req.http.cookie, "; +", ";");
5454
set req.http.cookie = regsuball(req.http.cookie, ";(IBX_SESSION_ID[^=]*)=", "; \1=");
55-
set req.http.cookie = regsuball(req.http.cookie, ";(ibexa-[^=]*)=", "; \1=");
55+
set req.http.cookie = regsuball(req.http.cookie, ";(ibexa[-_][^=]*)=", "; \1=");
5656
set req.http.cookie = regsuball(req.http.cookie, ";[^ ][^;]*", "");
5757
set req.http.cookie = regsuball(req.http.cookie, "^[; ]+|[; ]+$", "");
5858

docs/varnish/vcl/varnish6.vcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ sub vcl_recv {
5252
set req.http.cookie = ";" + req.http.cookie;
5353
set req.http.cookie = regsuball(req.http.cookie, "; +", ";");
5454
set req.http.cookie = regsuball(req.http.cookie, ";(IBX_SESSION_ID[^=]*)=", "; \1=");
55-
set req.http.cookie = regsuball(req.http.cookie, ";(ibexa-[^=]*)=", "; \1=");
55+
set req.http.cookie = regsuball(req.http.cookie, ";(ibexa[-_][^=]*)=", "; \1=");
5656
set req.http.cookie = regsuball(req.http.cookie, ";[^ ][^;]*", "");
5757
set req.http.cookie = regsuball(req.http.cookie, "^[; ]+|[; ]+$", "");
5858

docs/varnish/vcl/varnish7.vcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ sub vcl_recv {
5050
set req.http.cookie = ";" + req.http.cookie;
5151
set req.http.cookie = regsuball(req.http.cookie, "; +", ";");
5252
set req.http.cookie = regsuball(req.http.cookie, ";(IBX_SESSION_ID[^=]*)=", "; \1=");
53-
set req.http.cookie = regsuball(req.http.cookie, ";(ibexa-[^=]*)=", "; \1=");
53+
set req.http.cookie = regsuball(req.http.cookie, ";(ibexa[-_][^=]*)=", "; \1=");
5454
set req.http.cookie = regsuball(req.http.cookie, ";[^ ][^;]*", "");
5555
set req.http.cookie = regsuball(req.http.cookie, "^[; ]+|[; ]+$", "");
5656

0 commit comments

Comments
 (0)