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

Delta Between Two Patch Sets: modules/downloadserver/files/site.conf

Issue 29330205: Issue 3318 - Serve release update manifests for Adblock Browser (Closed)
Left Patch Set: Created Nov. 13, 2015, 7:21 p.m.
Right Patch Set: Remove $query_string from the cache key, add missing sitescripts.ini entries Created Nov. 19, 2015, 3:42 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | modules/downloadserver/files/sitescripts » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 keepalive_timeout 0; 1 keepalive_timeout 0;
2 root /var/www/downloads; 2 root /var/www/downloads;
3 3
4 location /.hg 4 location /.hg
5 { 5 {
6 internal; 6 internal;
7 } 7 }
8 8
9 # This redirect is necessary since we accidentally set the wrong 9 # This redirect is necessary since we accidentally set the wrong
10 # update URL in ABP for Android 1.2. It can be removed once we're 10 # update URL in ABP for Android 1.2. It can be removed once we're
11 # not seeing anyone requesting this file anymore. 11 # not seeing anyone requesting this file anymore.
12 # Note that this intentionally promotes devbuilds to release builds. 12 # Note that this intentionally promotes devbuilds to release builds.
13 # Since newer versions should use the new devbuild and release 13 # Since newer versions should use the new devbuild and release
14 # build update URLs requested by libadblockplus, leaving this 14 # build update URLs requested by libadblockplus, leaving this
15 # redirect around won't really hurt. 15 # redirect around won't really hurt.
16 location /devbuilds/adblockplusandroid/updates.xml 16 location /devbuilds/adblockplusandroid/updates.xml
17 { 17 {
18 rewrite ^ https://adblockplus.org/androidupdates.xml?$query_string redirect; 18 rewrite ^ https://adblockplus.org/androidupdates.xml?$query_string redirect;
19 } 19 }
20 20
21 location ~ (/devbuilds)?/adblockbrowser/updates.xml { 21 location ~ (/devbuilds)?/adblockbrowser/updates.xml {
22 fastcgi_pass unix:/tmp/multiplexer-fastcgi.sock; 22 fastcgi_pass unix:/tmp/multiplexer-fastcgi.sock;
23 include fastcgi_params; 23 include fastcgi_params;
24 fastcgi_cache adblockbrowserupdates; 24 fastcgi_cache adblockbrowserupdates;
25 fastcgi_cache_valid 200 10m; 25 fastcgi_cache_valid 200 10m;
26 fastcgi_cache_key "$request_uri $query_string"; 26 fastcgi_cache_key "$request_uri";
mathias 2015/11/19 12:40:06 Please use a question mark instead of a space char
Felix Dahlke 2015/11/19 15:44:40 I had a look at the cache files and it seems like
27 } 27 }
28 28
29 location /devbuilds 29 location /devbuilds
30 { 30 {
31 # This is necessary since ABP for Android revisions 323 to 337 crash when 31 # This is necessary since ABP for Android revisions 323 to 337 crash when
32 # detecting an update. Fortunately, we repeated the revision in addonVersion 32 # detecting an update. Fortunately, we repeated the revision in addonVersion
33 # in these versions for some reason, so we can use that pattern to detect 33 # in these versions for some reason, so we can use that pattern to detect
34 # them. 34 # them.
35 if ($arg_addonVersion ~ "^1\.2\.1\.3\d\d\.3\d\d$") 35 if ($arg_addonVersion ~ "^1\.2\.1\.3\d\d\.3\d\d$")
36 { 36 {
37 return 200 '{}'; 37 return 200 '{}';
38 } 38 }
39 alias /var/www/devbuilds; 39 alias /var/www/devbuilds;
40 } 40 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld