I have "rvm use 1.9.3" and "rvmsudo passenger start --socket (sitename).socket" as prerequisites to get Passenger running under Nginx. Everything else works perfectly, but the question is now how to make sure that all these commands, or some equivalent, work out with Nginx, which boots on system startup. I want this all automated.
This is what my added parts to the nginx.conf look like (# are stuff that apparently works with some configuration of Nginx/passenger, I haven't tried it at all.)
upstream (sitename)_upstream{
server unix:/(filepath)
}
server {
listen 80;
server_name (url);
root (filepath);
access_log (logpath);
error_log (logpath);
# passenger_enabled on;
# rails_spawn_method smart;
# rails_env development;
location / {
proxy_pass http://(sitename)_upstream;
proxy_set_header Host $host;
}
}
So what do I do now?