diff options
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -44,6 +44,19 @@ Redirect permanent /etiquette.html https://bugzilla.mozilla.org/page.cgi?id=etiq Redirect permanent /duplicates.html https://bugzilla.mozilla.org/duplicates.cgi RewriteEngine On +# This rewrite rule skips over the rest, which is good because the load balancers +# might hit this file once a second and we want apache to not take much time. +# Note that this file is generated by checksetup.pl +RewriteRule ^__lbheartbeat__$ - [L] + +# allow cloud-services to identify the version we're running. +# version.json is also generated by checksetup.pl +RewriteRule ^__version__$ version.json [L] + +# Unlike lbheartbeat, this endpoint is called less frequently (every five minutes or so) +# heartbeat.cgi returns 200 if the DB and memcached are both working, and 500 otherwise. +RewriteRule ^__heartbeat__$ heartbeat.cgi [L] + RewriteRule ^template_cache/ - [F,L,NC] RewriteRule ^template_cache.deleteme/ - [F,L,NC] RewriteRule ^review(.*) page.cgi?id=splinter.html$1 [QSA] |