few items
-
Seems like a cool plugin, I have a few issues though and I’m looking for advice —
(1) Per PageSpeed, there is no TTL set for
https://(website)/wp-content/webpc-passthru.php?src=https://(website)/wp-content/uploads/2021/04/(image1).jpg&nocache=1
This is the first location block I have in nginx:
location ~ /wp-content/(?<path>.+)\.(?<ext>jpe?g|png|gif)$ { if ($http_accept !~* "image/webp") { break; } add_header Vary Accept; expires 1y; try_files /wp-content/uploads-webpc/$path.$ext.webp $uri =404; }Is the fact that there is nocache=1 related to why PageSpeed is reporting this? What is appending nocache?
(2) I see an assets being loaded twice per inspector, e.g.
https://(website)/wp-content/uploads/2021/04/(image2).png
https://(website)/wp-content/webpc-passthru.php?src=https://(website)/wp-content/uploads/2021/04/(image2).png&nocache=1Should this be happening?
Thanks for your help,
The topic ‘few items’ is closed to new replies.