ShortPixel .webp Images ausliefern

ShortPixel ist ein hervorragender Bildoptimierungsservice mit CDN.

Er liefert Bilder auch automatisch angehängt als webp Format aus und damit dies mit WordPress einwandfrei klappt, benötigt Nginx hierüber klare Anweisungen.

#Shortpixel / Cache Enabler
location ~* ^(/wp-content/.+)\.(png|jpe?g)$ {
    set $base $1;
    set $webp_uri $base$webp_suffix;
    set $webp_old_uri $base.$2$webp_suffix;
    set $root /var/www/[*your webhost path here]/web/;
    root $root;
    add_header Vary Accept;
    if ( !-f $root$webp_uri ) {
        add_header X_WebP_SP_Miss $root$webp_uri;
    }
    try_files $webp_uri $webp_old_uri $uri =404;
}

Passe bitte „location“ und „root“ entsprechend deines Sets an, insbesondere die des Webroots deines Hosting-Paketes.

Was this helpful?