File tree Expand file tree Collapse file tree 4 files changed +10
-3
lines changed
app/code/Magento/PageCache/etc Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ sub vcl_recv {
109
109
}
110
110
111
111
if (req.method == " GET" && req.url ~ " /graphql" && req.url ~ " query=" ) {
112
- # Authenticated customers should not be cached by default
112
+ # Authentificated customers should not be cached by default
113
113
if (req.http.Authorization ~ " ^Bearer" ) {
114
114
return (pass );
115
115
}
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ sub vcl_recv {
110
110
}
111
111
112
112
if (req.method == " GET" && req.url ~ " /graphql" && req.url ~ " query=" ) {
113
- # Authenticated customers should not be cached by default
113
+ # Authentificated customers should not be cached by default
114
114
if (req.http.Authorization ~ " ^Bearer" ) {
115
115
return (pass );
116
116
}
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ sub vcl_recv {
110
110
}
111
111
112
112
if (req.method == " GET" && req.url ~ " /graphql" && req.url ~ " query=" ) {
113
- # Authenticated customers should not be cached by default
113
+ # Authentificated customers should not be cached by default
114
114
if (req.http.Authorization ~ " ^Bearer" ) {
115
115
return (pass );
116
116
}
Original file line number Diff line number Diff line change
1
+ <IfVersion < 2.4 >
2
+ order allow,deny
3
+ deny from all
4
+ </IfVersion >
5
+ <IfVersion >= 2.4 >
6
+ Require all denied
7
+ </IfVersion >
You can’t perform that action at this time.
0 commit comments