0
votes
0answers
14 views

Serving two Rails application (which reside in different servers) from one Nginx Server

I am new to Nginx and i have following scenarios: 1. I have two staging servers, Where staging1 has one Rails application & Nginx Installed. 2. Staging2 has another rails application & Nginx ...
-1
votes
0answers
23 views

Best practice to serve image files form Ruby server to Android client

I'm developing an app that has a core functionality very similar to Craigslist in that users will submit posts with item text content and associated media files such as images, and then other users ...
1
vote
1answer
116 views

Redmine 2.3, ruby 2.0.0, nginx 1.4.1 with passenger 4.0.2 all HTTP POSTs fail

I'm new to nginx and am attempting to run Redmine 2.3 using ruby 2.0.0, phusion passenger 4.0.2 and nginx 1.4.1. This is compiled from the passenger-install-nginx script on an ARMv5te system in Arch ...
0
votes
1answer
67 views

Redmine on Passenger (nginx) won't start

I followed the following tutorial: http://redminecrm.com/boards/4/topics/448-installing-redmine-2-2-passenger-nginx-rvm-on-ubuntu-12-04 At first, I had problems with mysql2 but fixed it by editing ...
0
votes
1answer
79 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) ...
0
votes
0answers
25 views

Unable to start the Passenger - 'analytics_log_dir' is missing

I'm trying to run Passenger on Ruby 1.9.3-p392, nginx 1.2.7 and rvm 1.19.6. I'm getting this strange error: Unable to start the Phusion Passenger watchdog because it encountered the following error ...
0
votes
1answer
63 views

What ways exist to run ruby scripts on web server without frameworks? [closed]

What ways exist to run ruby scripts on a web server without frameworks? For example, I can have nginx with only php5-fpm. I want to create a few pages with simple logic using Ruby.
2
votes
1answer
77 views

Nginx Rails Error

When I start nginx, I get this error: Preloader for /u/apps/Dismissrr/current started on PID 23521, listening on unix:/tmp/passenger.1.0.23443/generation-0/backends/preloader.23521 [ 2013-04-05 ...
1
vote
1answer
51 views

How to kill fastcgi-mono-server4.exe from a rake file?

I'm working on automated deployment using Rake of a mono asp.net website to ubuntu server with nginx. As far as I've discovered fastcgi-mono-server4.exe can't be stopped gracefully and must be ...
0
votes
0answers
31 views

Access to singleton class in Rails lib in Passenger+NGINX environment

I used to have a mongrel (no-cluster) rails app with a singleton class defined under the lib directory. This I included in the controller with a require statement. Being a RoR newbie, I was under the ...
0
votes
2answers
110 views

nginx keeps saying “welcome to nginx” even when nginx.conf changed [closed]

This is my nginx.conf, afetr succesfully deploying with capistrano: http{ server { listen 80; server_name localhost; passenger_enabled on; root ...
4
votes
1answer
228 views

Why thin behind nginx?

Deploying my first web app. I have been using thin, it's simple and easy. All I need is a config file. But a lot of people use nginx and place a couple thin instance behind that. Why? Why not just ...
4
votes
1answer
96 views

Sinatra: Hot Code Pushes In Production?

When I push new code from my Sinatra application to my production server, I am currently triggering a restart of passenger by touching tmp/restart.txt, which loads the new changes. The problem is ...
0
votes
1answer
61 views

Phusion passenger can't free port

Ok, i'm running passenger standalone, and made a dumb mistake, now I need help fixing. So a test app directory was running standalone passenger on a specific port, and I deleted the directory so that ...
0
votes
2answers
126 views

Forward TCP connection to HTTP on Nginx

I'm running an app which accepts data from GPS loggers, being this data sent via SMS, HTTP or TCP. I was using the HTTP connection to transmit the data, which was straightforward to receive through a ...
2
votes
1answer
115 views

Bundle error when deploy with capistrano(rbenv)

I use capistrano to deploy my rails app to my vps. And i have problem when cap deploy update. The error message is like this: ** [out :: 1] Gem::Installer::ExtensionBuildError: ERROR: Failed to ...
0
votes
1answer
151 views

NGINX CONF with RAILS on LINODE

This is my nginx.conf file upstream unicorn { server unix:/tmp/unicorn.blog.sock fail_timeout=0; } server { listen 80 default deferred; # server_name example.com; root ...
0
votes
1answer
235 views

Phusion Passenger cannot start Rails application

Any help would be greatly appreciated. I'm trying to run basic Rails apps on my server. I'm running Ubuntu and nginx. Ideally I'd like to be able to still run php apps so nginx+Phusion seems like the ...
5
votes
2answers
215 views

Foreman Cannot Start Nginx, But I Can Start it Manually. Why?

I am currently running Foreman on staging (Ubuntu) and once I get it working will switch to using upstart. My Procfile.staging looks like this: nginx: sudo service nginx start unicorn: bundle exec ...
0
votes
0answers
19 views

How this nginx rewrite would be written in Rake Rewrite?

I'm a bit lost in how to convert the following nginx config to Rake Rewrite ruby format? if (-f $document_root/cache/$host/$uri/index.html) { rewrite (.*) /cache/$host/$1/index.html break; } if ...
0
votes
4answers
251 views

Detect if Rails is Running a Site

I am part of a team that manages a public facing cloud platform at my company. We have a large user base running VM's that face the internet. I would like to run an automated scan of our address space ...
0
votes
1answer
175 views

Rails 3.2 app on Ubuntu 10.04 with Plesk 11, nginx as reverse proxy and apache

i have a Virtual Server with Ubuntu 10.04 from Hosteurope. Plesk 11.0.9 is installed. nginx as a reverse proxy activated. On my local Ubuntu installation i installed a rails app with : rvm, ruby ...
-2
votes
1answer
169 views

nginx passenger 502 gateway errors in production [closed]

I have a Rails 3.2.11 production server running two sites: one site is using postgress, and the other one is using mongodb. I’m running Ubuntu 12.10, Nginx 1.2.6, Ruby 1.9.3-p362, Phusion Passenger ...
1
vote
1answer
192 views

Running Rails Server in a UNIX socket

Is it possible to run rails server in a UNIX socket? I ask because rails server gives such a beautiful output, and it's really easy to distinguish SQL queries from HTTP requests, etc. But, I'm using ...
1
vote
1answer
77 views

Handling chunked request in Sinatra

In Sinatra I have a route setup similar to the following: put '/test' do begin logger.info 'In put begin block' write_to_file(request.body.read) [200, ''] rescue RuntimeError => ...
12
votes
8answers
269 views

3rd Party Script Caching in Rails 3.1

I have a script 3rd party websites are using: /assets/script.js. For obvious reasons, I can't ask them to change the link every time I deploy to point to the latest fingerprinted version of the ...
2
votes
1answer
314 views

How do I deploy sinatra to an aws ec2 ubuntu server?

I know how to install apache or nginx to an ubuntu server on aws. My experience is usually with php applications where I create a virtualhost and point it towards the path of my application's ...
1
vote
0answers
37 views

HA Server settings for Rails App

We are using Rails 3.2 and Ruby 193 over Nginx and Apache. May I know the best options to provide a HA(High Availablity) setup. Example: 2 servers for MySQL DB, 2 server for Nginx-Passenger with ...
2
votes
1answer
94 views

Conflict with ruby and nginx on my production server?

I have a weird problem on my production server. There are Ubuntu server, nginx + phusion passenger installed on it. I manage my ruby version with rvm and it's ruby 1.9.3-p327 and rails 3.2.9. ...
8
votes
1answer
631 views

EventSource / Server-Sent Events through Nginx

On server-side using Sinatra with a stream block. get '/stream', :provides => 'text/event-stream' do stream :keep_open do |out| connections << out out.callback { ...
1
vote
1answer
88 views

Upload image not work on production mode

Upload image work good on my machine but not work on live server. This is params on localhost: ...
0
votes
0answers
129 views

passenger with nginx crashing

oddly my passenger deployment is now randomly crashing. The nginx error log shows this dump [ pid=25144 thr=140710263363328 file=ext/nginx/HelperAgent.cpp:933 time=2012-11-25 19:09:59.27 ]: Uncaught ...
2
votes
4answers
1k 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
1answer
87 views

What's the IPC mechanism between Nginx and backend server?

Nginx transfers requests to other backend servers, such as Thin(Ruby server), or Node.js server, or Tomcat, then What's the IPC mechanism between them? Shared memory? Socket (even in same machine)? ...
0
votes
2answers
225 views

Ruby Net::HTTP not decoding gzip?

I have ruby-1.9.3-p327 with zlib installed. localhost:80 is the nginx simple test page. require "net/http" => true Net::HTTP::HAVE_ZLIB => true res = Net::HTTP.start("localhost", "80") do ...
0
votes
1answer
268 views

how to run a ruby CGI script via nginx [closed]

I googled alot but couldn't find a proper howto to run a simple ruby CGI script via nginx. Can some one help me in regards. Thank you.
0
votes
0answers
207 views

Starting Rails App with Passenger and Nginx

I have set up my production server with passenger and nginx by basically doing this (its Ubuntu 11.04) 1) Install and configure RVM 2) Install Ruby 1.9.2 3) Install Rails 3.2.6 4) Install ...
0
votes
1answer
82 views

Nginx redirecting to IP

I recently used the Deploying to VPS Railscasts by Ryan Bates for one of my projects. Everything worked like a charm however there is one small issue which is bugging me regarding the nginx ...
2
votes
2answers
618 views

How to deploy Ruby Rack app with NGINX

I want to deploy a simple Ruby Rack service with NGINX. I read various things on the internet, none of which were helpful enough. Lets say I have this (in reality it's a bit more complex but still ...
3
votes
2answers
1k views

Sidekiq worker not getting triggered

I am using Sidekiq for my background jobs: I have a worker app/workers/data_import_worker.rb class DataImportWorker include Sidekiq::Worker sidekiq_options retry: false def ...
0
votes
0answers
20 views

Excecute simplest Ruby-script on and show result in web-browser with nginx [duplicate]

Possible Duplicate: How do I embed ruby.rb file via form in a way that ruby.rb would be executed and results visible in view I have simple ruby code to excecute when link on web-page hitted ...
0
votes
3answers
1k views

Ubuntu Nginx, Rails, and Thin

I followed this article to have an Ubuntu Nginx, Rails, and Thin server, but when access the home page I get 500 Internal Server Error and the folloing error log : 2012/09/29 18:43:14 [alert] ...
3
votes
2answers
317 views

unicorn timeout handling

I'm wondering what is the best way to track unicorn timeouts from my app. There are some bits of the app which are slow and they currently timeout quietly. I could increase the timeout but that is ...
0
votes
0answers
143 views

Passing passenger_base_uri info to rails app

I'm using nginx/1.2.1 + Phusion Passenger 3.0.13 and I'm setting up multiple Rails apps on a single server using the passenger_base_uri param in my nginx.conf file. It looks something like the ...
4
votes
1answer
96 views

Rails returning results from other requests when connecting to multiple databases.

On a server running nginx and unicorn, I have rails configured to connect to two different databases. Under even a light load, web requests to endpoints that access the second rails database will ...
0
votes
1answer
457 views

fastest hacks for deploying a Sinatra app under nginx and thin (linux ofcourse)

I am trying to figure out best practices of deploying a sinatra app under nginx and thin! any guidelines or sourcecode will be appreciated. I don't want to use passenger nor Apache.. as my hunch is ...
0
votes
1answer
337 views

Forbidden 403 - Rails App

Some help would be appreciated - keep getting Forbidden 403 error. Nginx configuration: listen 80; server_name www.xxx.com; passenger_enabled on; #charset koi8-r; #access_log ...
1
vote
0answers
129 views

Thin Maximum connections meaning and the need of clusters?

Thin maximum connection for Thin is set to 1024 and previous questions on stackoverflow clearly explain how to change that. My question is regarding a small ruby application. What does 1024 ...
0
votes
0answers
58 views

Server alias redirect [closed]

We have two sites: site1.com site2.com We need a general folder /img/ on those sites. For example: site2.com/img/image.png Get started run file image.png on this domain: ...
0
votes
1answer
232 views

Webistrano - Phusion Passenger - Could not find rake

I'm having issues running deploy tasks in Webistrano. This only when I run Webistrano from Nginx with Phusion Passenger. When I run Webistano with the following command, everything runs fine. ...

1 2 3 4