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

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

Issue 29325713: Issue 2981 - Enable cache lock for notification requests (Closed)
Patch Set: Created Sept. 2, 2015, 7:09 p.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 keepalive_timeout 0; 1 keepalive_timeout 0;
2 2
3 location /.hg 3 location /.hg
4 { 4 {
5 internal; 5 internal;
6 } 6 }
7 7
8 location /notification.json 8 location /notification.json
9 { 9 {
10 fastcgi_pass unix:/tmp/multiplexer-fastcgi.sock; 10 fastcgi_pass unix:/tmp/multiplexer-fastcgi.sock;
11 include /etc/nginx/fastcgi_params; 11 include /etc/nginx/fastcgi_params;
12 fastcgi_cache notification; 12 fastcgi_cache notification;
13 fastcgi_cache_key $group; 13 fastcgi_cache_key $group;
14 fastcgi_cache_valid any 1m; 14 fastcgi_cache_valid any 1m;
15 fastcgi_cache_lock on;
Felix Dahlke 2015/09/02 19:31:25 This should suffice - fastcgi_cache_timeout is set
15 } 16 }
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