Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: modules/filterserver/files/site.conf

Issue 29821555: #12823 - Serve minified lists to chromium applications (Closed)
Patch Set: Created July 3, 2018, 9:50 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 6
7 # http://hub.eyeo.com/issues/262 7 # http://hub.eyeo.com/issues/262
8 location /filters/easylist-min.txt 8 location /filters/easylist-min.txt
9 { 9 {
10 proxy_cache filters; 10 proxy_cache filters;
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 } 48 }
49 49
50 if ($geoip_country_code = "DE") 50 if ($geoip_country_code = "DE")
51 { 51 {
52 set $use_alternative_resource_flags "${use_alternative_resource_flags}+LOCATIO N"; 52 set $use_alternative_resource_flags "${use_alternative_resource_flags}+LOCATIO N";
53 } 53 }
54 54
55 # http://hub.eyeo.com/issues/1374 55 # http://hub.eyeo.com/issues/1374
56 # http://hub.eyeo.com/issues/10493 56 # http://hub.eyeo.com/issues/10493
57 # http://hub.eyeo.com/issues/10517 57 # http://hub.eyeo.com/issues/10517
58 if ($arg_application ~ (com\.microsoft\.emmx|com\.ume\.browser\.global)) 58 if ($arg_application ~ (com\.microsoft\.emmx|com\.ume\.browser\.global|org\.chro mium\.chrome))
59 { 59 {
60 set $use_alternative_resource_flags "${use_alternative_resource_flags}+MIN"; 60 set $use_alternative_resource_flags "${use_alternative_resource_flags}+MIN";
61 } 61 }
62 62
63 ### http://hub.eyeo.com/issues/3924 for Chinese SBrowser video exceptions (1/4) 63 ### http://hub.eyeo.com/issues/3924 for Chinese SBrowser video exceptions (1/4)
64 if ($arg_application = "sbrowser") 64 if ($arg_application = "sbrowser")
65 { 65 {
66 set $use_alternative_resource_flags "SBROWSER"; 66 set $use_alternative_resource_flags "SBROWSER";
67 } 67 }
68 68
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 rewrite ^/liste_ar\+liste_fr\+easylist\.(.+) /liste_ar+liste_fr+easylist-minif ied.$1 break; 116 rewrite ^/liste_ar\+liste_fr\+easylist\.(.+) /liste_ar+liste_fr+easylist-minif ied.$1 break;
117 rewrite ^/rolist\+easylist\.(.+) /rolist+easylist-minified.$1 break; 117 rewrite ^/rolist\+easylist\.(.+) /rolist+easylist-minified.$1 break;
118 rewrite ^/ruadlist\+easylist\.(.+) /ruadlist+easylist-minified.$1 break; 118 rewrite ^/ruadlist\+easylist\.(.+) /ruadlist+easylist-minified.$1 break;
119 } 119 }
120 120
121 ### http://hub.eyeo.com/issues/3924 for Chinese SBrowser video exceptions (4/4) 121 ### http://hub.eyeo.com/issues/3924 for Chinese SBrowser video exceptions (4/4)
122 if ($use_alternative_resource_flags = "SBROWSER+ABPSBROWSER+CN") 122 if ($use_alternative_resource_flags = "SBROWSER+ABPSBROWSER+CN")
123 { 123 {
124 rewrite ^/easylistchina\+easylist\.(.+) /easylistchina+easylistchina_complianc e+easylist.$1 break; 124 rewrite ^/easylistchina\+easylist\.(.+) /easylistchina+easylistchina_complianc e+easylist.$1 break;
125 } 125 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld