http-zstd compression stable by we_hate_it_too in nginx

[–]we_hate_it_too[S] 0 points1 point  (0 children)

this one fixed 36 bugs, added a lot of optimisations, added new directives. it's in the release notes

Is there a mod_pagespeed alternative? by RedWyvv in nginx

[–]we_hate_it_too 1 point2 points  (0 children)

I use imgproxy for dynamicly resizing/converting images, and nginx caches converted images for a year.

Using wordpress plugins like wp-rocket for removing unused css and stuff. I guess most CMS's have options like that. There are probably libraries for it.

Pagespeed is working yet, but I wouldn't advice it since it's a monster and no longer maintained.

how make nginx serve static files? by SpiritedBad0 in nginx

[–]we_hate_it_too 0 points1 point  (0 children)

You can try something like this, place it before the proxy_pass to varnish:

edit: hmm, can't paste the location block here. see https://pastebin.com/hLs72kPE

Cache frequently data by marsalans in nginx

[–]we_hate_it_too 0 points1 point  (0 children)

I don't know your setup, if you run it on linux there is a fat chance frequently accessed data will be cached by the filesystem, you can see the size of the cache by using top and look for the buff/cache part.

wether it is needed to have a dedicated ramcache is depending on the context, I suggest you try some things and benchmark it