OLD | NEW |
1 root /var/www/easylist; | 1 root /var/www/easylist; |
2 keepalive_timeout 0; | 2 keepalive_timeout 0; |
3 charset utf-8; | 3 charset utf-8; |
4 gzip_static on; | 4 gzip_static on; |
5 default_type text/plain; | 5 default_type text/plain; |
| 6 |
| 7 # http://hub.eyeo.com/issues/262 |
| 8 location /filters/easylist-min.txt |
| 9 { |
| 10 proxy_cache filters; |
| 11 proxy_cache_key $uri; |
| 12 proxy_cache_lock on; |
| 13 proxy_cache_revalidate on; |
| 14 proxy_cache_use_stale error timeout http_500 http_502 http_503 http_504; |
| 15 proxy_cache_valid any 60m; |
| 16 proxy_hide_header Content-Disposition; |
| 17 proxy_pass https://cdn.adblockcdn.com; |
| 18 } |
| 19 |
OLD | NEW |