Been working with Nginx and passenger. I have successfully got one app / domain to work correctly. But with my server I have 2+ domains I plan to server from nginx to their respective root directory where each rails app will live.
I have tried numerous techniques, but none work. All domains take the first root setup, and not the root they should be.
Here is my nginx.conf file:
server {
listen 80;
server_name www.danielcw.info;
root /root/public/danielcw.info/public; # <--- be sure to point to 'public'!
access_log /root/public/danielcw.info/log/access.log;
error_log /root/public/danielcw.info/log/error.log;
passenger_enabled on;
rails_env development;
}
server {
listen 80;
server_name www.ericoppi.com;
root /root/public/ericcoppi.com/public; # <--- be sure to point to 'public'!
access_log /root/public/ericcoppi.com/log/access.log;
error_log /root/public/ericcoppi.com/log/error.log;
passenger_enabled on;
rails_env development;
}
Any help is much appreciated!