This post appeared originally in our sysadvent series and has been moved here following the discontinuation of the sysadvent microsite

This post appeared originally in our sysadvent series and has been moved here following the discontinuation of the sysadvent microsite
Sometimes you come across problems with websites that normal configuration does not address usefully. A case in point was a PHP-based application that from time to time returned a 302 to a login page instead of the front page, which is not optimal when you serve news articles.
Our solution was to add a simple rule to Varnish, so we serve old cached content, using “grace”, instead of the redirect. Grace allows Varnish to serve expired content in case there are problems fetching fresh version from backend. And while we are at it, lets do the same trick for fatal backend errors too:
sub vcl_backend_response {
# Ignore redirect from front page (as this problem only occurs there):
if (beresp.status == 302 && bereq.url == "/") {
return(abandon);
}
# Serve old content when backend is sick:
elsif (beresp.status >= 500) {
return(abandon);
}
# Make sure grace is active so we can service old content:
set beresp.grace = 48h;
}
Now, if the PHP application misbehaves fully, resulting in a 5xx response, or returns a redirect page instead of the front page, Varnish will just abandon the response and serve the old cached content instead, up to 48 hours after ttl.
This, of course, only works if the content /is/ cached and can be served from cache. To optimize this, you should make sure of the following:
sub vcl_hash {
hash_data(req.http.cookie);
}
import softpurge;
sub vcl_hit {
if (req.method == "PURGE") {
softpurge.softpurge();
return(synth(200, "Successful softpurge"));
}
}
Softpurge will expire the object in cache, enabling Varnish to serve it with grace as needed.
With these small additions to the Varnish configuration, your visitors should be less affected by a misbehaving application server.
I den här artikeln kommer vi att gå igenom hur man sätter upp en minimal installation av en Matrix homeserver med Synapse-implementationen. Denna server kommer att kunna federera med andra servrar, för att fullt ut delta i det offentliga Matrix-nätverket.
TLDR: Ifall du vill köra på snabbspåret, kika längst ner i artikeln, där finns det en sammanfattning som endast innehåller konfigurationsfilerna.
All mjukvara i denna ... [continue reading]