| Index: modules/filterserver/files/site.conf |
| =================================================================== |
| --- a/modules/filterserver/files/site.conf |
| +++ b/modules/filterserver/files/site.conf |
| @@ -3,3 +3,17 @@ |
| charset utf-8; |
| gzip_static on; |
| default_type text/plain; |
| + |
| +# http://hub.eyeo.com/issues/262 |
| +location /filters/easylist-min.txt |
| +{ |
| + proxy_cache filters; |
| + proxy_cache_key $uri; |
| + proxy_cache_lock on; |
| + proxy_cache_revalidate on; |
| + proxy_cache_use_stale error timeout http_500 http_502 http_503 http_504; |
| + proxy_cache_valid any 60m; |
| + proxy_hide_header Content-Disposition; |
| + proxy_pass https://cdn.adblockcdn.com; |
| +} |
| + |