Skip to content

Commit

Permalink
Bump CHANGELOG revision
Browse files Browse the repository at this point in the history
  • Loading branch information
dmarteau committed Feb 16, 2022
1 parent 9ceff56 commit 0224de0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 1.7.16 - 2022-02-16

* Add BAN cache observer
* Fix parameter's case in OGC API requests
- Fix https://github.com/3liz/py-qgis-server/issues/34
Expand Down
9 changes: 8 additions & 1 deletion tests/varnish.vcl
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,14 @@ sub vcl_backend_response {

# Set grace period long enough to get
# the response from long loading projects
set beresp.grace = 10m;
set beresp.grace = 10m;

# Keep the response in cache for 24 hours if the response has
# validating headers.
if (beresp.http.ETag || beresp.http.Last-Modified) {
set beresp.keep = 24h;
}

return (deliver);
}

Expand Down

0 comments on commit 0224de0

Please sign in to comment.