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.
|
feedback
|
|
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. | |||
|
feedback
|