Is it possible to force Nginx to render some URL from Rails app although file exists on server? I want to hide some files based from which subdomain request comes. So I would like to completely avoid direct rendering of file from server.

link|improve this question
feedback

1 Answer

If you make your public directory empty / move it to another location then all requests will be responded to by rails in the first instance.

You can then use X-Sendfile ( or the nginx equivalent ) to send the file if you want the user to have access to it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.