How do I set environment variables so that they are available to my rails app hosted inside nginx/passenger?
|
feedback
|
|
One way to achieve this is to replace your passenger_ruby with a wrapper script.
to
passenger_ruby is a shell script with following content:
| |||
|
feedback
|
|
I tried a few different nginx including passenger_set_cgi_param, env and fast_cgi_param. Unfortunately none of these worked for me. In the end I exported them as bash variables in the startup script I was using to launch nginx. | |||
|
feedback
|