Tagged Questions
0
votes
1answer
93 views
Configuring multiple Rails projects with nginx, rvm, and passenger?
I'm using nginx, rvm and passenger to run a web server for a Rails project (i.e., project1). This project has a specific gemset defined for it. I now need to run a second project (i.e., project2) ...
-1
votes
1answer
40 views
Invalid Operation Error when rvmsudo apt-get on ubuntu 12.04.1
We are using rvm 1.19.0 to install libcurl4-openssl-dev (for passenger and nginx for rails). However there was an error. Then we run the following as suggested:
$export rvmsudo_secure_path=1
Now ...
2
votes
1answer
282 views
Error installing Passenger with nginx on OS X Mountain Lion
So I'm following this tutorial, and about half way through compiling nginx, 'It looks like something went wrong'.
So, I have RVM installed and working, and I also have the Passenger gem installed. I ...
2
votes
4answers
2k views
sudo: rvm: command not found - RVM MultiUser install on Ubuntu 12.04 server
I'm setting up a server, it's an Ubuntu 12.04
first I installed RVM multi-user:
me@ubuntu$ \curl -L https://get.rvm.io | sudo bash -s stable
then after RVM installed, as the installation suggests I ...
1
vote
2answers
308 views
Installing passenger nginx
I installed the passenger gem, but it didn't work with my old nginx. So I am trying to install nginx from the passenger script.
I do $ sudo ./bin/passenger-install-nginx-module, which gives
* ...
0
votes
1answer
149 views
ENV['MY_RUBY_HOME'] is nil while trying to get nginx to play with rvm
I want to nginx to serve a rails app. I've set up my gems using an rvm gemset. From the directions to get nginx to load my gemset, I made a config/setup_load_paths.rb file:
if ENV['MY_RUBY_HOME'] ...
0
votes
0answers
114 views
Thin permissions in etc folder (Ubuntu) [closed]
I am working on a RoR server setup that uses Thin and Nginx.
It works fine, but only if I manually add the folder /etc/thin and set the permissions to 777 in order to use the command below:
thin ...
0
votes
1answer
129 views
Error installing Phusion Passenger
I've been trying to install Phusion Passenger on my Centos VPS hosting a rails 3 app but I keep getting the following error:
Installing Phusion Passenger Standalone...
...
1
vote
2answers
204 views
Installing RVM on VPS
I'm just about to set up a VPS that will host multiple RoR sites. I'm planning to do this using nginx as my server and passenger for deployment. I'm wondering how I can use RVM to have multiple ...
4
votes
1answer
174 views
How do I setup multiple rails applications for development?
For the site I am currently working on we have 2 Rails 3.2 projects. One project is basically an API, and the other is a web front end. In order to develop on the web front end I need to have the ...
1
vote
1answer
667 views
How to remove nginx?
I've got nginx and passenger installed with command:
rvmsudo passenger-install-nginx-module
Is there any nifty way to remove it easily?
0
votes
1answer
258 views
rvm passenger nginx
I am trying to deploy my app to a VPS with capistrano, rvm, passenger & nginx.
I already had installed nginx via apt-get on Debian6.
Now it appears as though to install passenger and to run ...
1
vote
0answers
96 views
Virtual host setup and management for Rails apps with RVM?
I have a server that will be hosting several Rails apps and I'm attempting to understand how best to serve these multiple virtual hosts. I have done this before via reverse proxy with Apache and ...
0
votes
1answer
1k views
Phusion Passenger + NGinx with Rails 3
indexI am trying to deploy a simple Rails 3 app on a AWS EC2 with a Ubuntu 12.04 64 bit AMI. I followed the steps in the Phusion Passenger NGinx install page. I also used RVM which was installed ...
0
votes
2answers
1k views
Ubuntu 12.04: 'unicorn_init.sh start' works, but 'service unicorn_init start' does NOT
I have installed nginx with unicorn on an Ubuntu 12.04 server. Everything works, site, db, unicorn...good. So I'm trying to make sure that after a reboot, nginx and unicorn start up. I have set ...
0
votes
1answer
1k views
Thin doesn't start rails server
I have a ubuntu server with rails(rvm) + nginx + thin.
Nginx is listening to porst 3000-3 and works good if I start rails manually, so I guess the problem is with thin.
I've configured thin to start ...
6
votes
1answer
2k views
Cannot spawn application
I have rvm, passenger, ruby 1.9.3, nginx but I now get this error
Cannot spawn application '/path/to/my/app': Could not read from the spawn server: Connection reset by peer (104)
I have ...
0
votes
1answer
277 views
How to autostart rvm'ed Passenger inside Nginx
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 ...
0
votes
1answer
490 views
Thin autostart with nginx (through rvm)
I currently have different users setup with a Rails app in each users home directory. I used RVM to install separate version of Ruby, Rails, and Thin in each home directory. If I login to the user and ...
1
vote
0answers
181 views
debian wheeze nginx compile error
I am using rvm in debian wheeze, i want to run rails with passenger, and i get error on nginx standalone core compile. I am using ruby 1.9.2 and i have install in my system the proper libs.
...
2
votes
1answer
323 views
Make Nginx use the correct passenger gem
I am trying to setup an nginx + sinatra + ubuntu 10.04 + passenger + rvm stack. I followed the directions here: ...
1
vote
0answers
434 views
Crash while installing Passenger 3.0.8 with Nginx 1.0.5 on CentOS 5.6 (with RVM and Ruby 1.9.2-290)
After I downloaded the OpenSSL 1.0.0d and Nginx 1.0.5 sources, and after successfully installed RVM (v1.7.2) and Ruby 1.9.2-p290 on CentOS 5.6 i386, I did the following as root :
rvm use 1.9.2 ...
1
vote
2answers
2k views
Should I have installed RVM as multi-user?
I painted myself into a bit of an annoying corner.
I started using RVM and have one of my apps now sitting happily in its own Ruby 1.8.7@appname gemset. I can make the gemset from scratch and do ...
0
votes
5answers
1k views
Problem installing passenger with Nginx with rvm on linux
Tried to install Passenger with Nginx (on EC2 Linux). I'm using ec2-user (instead of Root). Ruby 1.9.2 with RVM.
Passenger gem installs correctly.
But when I try:
passenger-install-nginx-module
...
0
votes
2answers
821 views
RVM, Passenger, NGINX on top of existing Passenger/NGINX
I previously had Passenger 2.2.13 install with NGINX 0.7.65 - I want to install rails 3 so I figured I'd go the RVM route. I followed instructions from ...