We are using a Synology Rackstation storage to store our static content which is served by a 4x Nginx backend. Now we've mounted it by nfs4 like this:
192.168.0.20:/volume1/images2 /data/images nfs4 _netdev,rsize=32768,wsize=32768,intr,noatime 0 0
But now we're looking for a most performant way to get the static content (mostly ~500KB images). Is there any better way to do this?
Thanks!