I am looking for web hosting control panel, commercial or open source edition which supports ruby on rails application deployment with phusion passenger + nginx support. I tried google, but i got http://en.wikipedia.org/wiki/Comparison_of_web_hosting_control_panels,
upto my knowledge none of them is not supporting rails+phusion passenger+nginx. so guys please help me.
So I've installed multi-user rvm and Ruby 1.9.3. On top of that I've got rails, passenger and apache2 on my Ubuntu 12.10 machine. The apache2 web server works fine, but passenger won't serve my apps, and running passenger-status returns ERROR: Phusion Passenger doesn't seem to be running..
I've had Phusion Passenger working for a few of my sites for months. Then, today, it stopped working for a single site. I hadn't changed anything (I hadn't even SSH'ed into the server for a week), and everything is set up the way it should for it to work. Plus, it's working fine for other sites!
I'm developing a rails app and in general just running service nginx stop will cause the Phusion Passenger processes to be killed. But I'm having an instance where this isn't happending (see top -c screenshot). Have I been doing this wrong? I though these processes were tied to our nginx process and would die in this scenario?
thx
I have deployed my rails3 application over Nginx with Phusion passenger. I have tried to make POST request to a controller method, it works fine when method finish execution in a minute. If the method took more than a minute then got internal server error 500.
I could see this error on JavaScript console, but no error log on Nginx or rails log.
I'm running Phusion Passenger on RHEL, hosting a Rails application.
I can successfully start up a passenger instance on Apache startup using the Passenger setting PassengerPreStart, but only if I start up Apache using apachectl start.
If I start up Apache using the RHEL convention of "service httpd start", then PassengerPreStart is not executed.
I'm trying to install Passenger (mod_rails) on Apache2 server by using the command
1. gem install passenger
2.
I am having a weird issue with cache using Rails, Apache2 and Phusion Passenger.
application_controller.rb
def check_logged_in
if session[:user_id]
redirect_to(:controller => 'home', :action => 'index')
return true
else
redirect_to root_path
return false
end
end
sessions_controller.rb
before_filter :check_logged_in, :only => :login
caches_a
I'm trying to deploy my Rails app to a new VPS which runs with Debian. I'm using Nginx and Phusion Passenger as my server.
I've installed Node.js as a JavaScript runtime. Sadly I'm seeing the following error message:
Fatal error in v8::V8::AddGCPrologueCallback()
V8 is no longer usable