I am having Nginx running on port 80 and nodejs on port 8000.
With our current setup Nginx serves all the static contents until user clicks login,where request will be send to nodejs on port 8000 and it validates request.
Each user has session and can upload images which will be processed by nodejs.
So is there a way to cache those uploaded images in nginx so that when the next time user calls for those uploaded image,instead of going request to nodejs let nginx serves content, thus minimizing hits on nodejs.
i have heard of Nginx as reverse proxy but i am not sure whether it can cache images with sessions.