Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Can't you just save the images in a directory accessible to nginx and add a location to its configuration to serve them? – GVdP Nov 30 '12 at 13:15

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.