Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/config/varnish-3/fos_user_context.vcl
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ sub fos_user_context_recv {
sub fos_user_context_hash {
if (req.http.accept == "application/vnd.fos.user-context-hash") {
hash_data(req.http.Cookie);
hash_data(req.http.Autorization);
hash_data(req.http.Authorization);
}
}

Expand Down
2 changes: 1 addition & 1 deletion resources/config/varnish/fos_user_context.vcl
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ sub fos_user_context_recv {
sub fos_user_context_hash {
if (req.http.accept == "application/vnd.fos.user-context-hash") {
hash_data(req.http.Cookie);
hash_data(req.http.Autorization);
hash_data(req.http.Authorization);
}
}

Expand Down