We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afbf196 commit 4716c7fCopy full SHA for 4716c7f
nginx/templates/servers.conf.template
@@ -15,15 +15,15 @@ server {
15
16
client_max_body_size 15M;
17
18
- proxy_cache_key $uri$is_args$args;
+ proxy_cache_key $uri;
19
proxy_cache vector_cache;
20
proxy_cache_valid 200 302 10m;
21
proxy_cache_valid 404 1m;
22
proxy_cache_valid any 1m;
23
proxy_cache_revalidate on;
24
proxy_cache_use_stale error timeout updating;
25
26
- proxy_cache_bypass $http_pragma $http_cache_control;
+ proxy_cache_bypass $http_cache_control;
27
28
proxy_pass http://payload:3000;
29
}
@@ -60,7 +60,7 @@ server {
60
listen 1810;
61
62
location ~ ^/purge(/.*) {
63
- proxy_cache_purge vector_cache $1$is_args$args;
+ proxy_cache_purge vector_cache $1;
64
65
return 200;
66
0 commit comments