OLD | NEW |
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; |
15 } | 16 } |
OLD | NEW |