You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
v5.0.1: Cache-Control entfernt
Dieses Minor-Release entfernt die Cache-Control Header aus dem Skript.
Diese müssen jetzt über den Webserver konfiguriert werden:
```
Header set Cache-Control "max-age=86400, public"
```
```
location ~* {
expires 1y;
add_header Cache-Control "public";
}
```