0
votes
1answer
29 views

Why is SSL redirect not working with force_ssl and Nginx?

I have a Rails 3.2.13 app that I am trying to configure SSL for with Nginx and Unicorn. I want to be able to tell some controllers and some controller actions to 'force_ssl' and to properly redirect. ...
1
vote
0answers
15 views

Serve logs through web interface rails

I have a web application built with ruby on rails. It is served by Nginx through unicorn, the application is running on a Ubuntu server VPS. I have 4 log files: nginx's access log nginx's error log ...
0
votes
0answers
8 views

Nginx and Unicorn Set up Not sure what I am doing

This is my first time setting up nginx and unicorn, someone directed me to this tutorial http://teohm.github.io/blog/2013/04/17/chef-cookbooks-for-busy-ruby-developers/ I have a general ...
1
vote
0answers
19 views

First time working with nginx and unicorn

I have looked through the railscast for configuring nginx and unicorn. I have checked out nginx doc but still can't make heads to tail with what I should do to get nginx up and running. I have googled ...
0
votes
0answers
12 views

Nginx throwing HTTP 500 when serving protected asset with send_file

I am having problems serving protected assets (PDFs) with Nginx + Unicorn + Rails. Problem is that sometimes the file is sent properly but other times Nginx returns an HTTP 500 though the Rails log ...
0
votes
1answer
18 views

Running nginx infront of a unicorn or gunicorn under Elastic Load Balancer

I have a very simple question. Nginx does reverse proxy buffering for HTTP servers like Gunicorn and Unicorn. However if I have a Elastic Load Balancer (offered by Amazon Web Services also known as -- ...
0
votes
1answer
21 views

502 Bad Gateway error with nginx and unicorn

I have nginx 1.4.1 and unicorn set up on centos - I am getting a 502 Bad Gateway error and my nginx logs shows this: 1 connect() to unix:/tmp/unicorn.pantry.sock failed (2: No such file or ...
0
votes
1answer
37 views

Nginx doesn't starts anymore with no outputs

I was using nginx for a uniq app, then I changed it and configured for server blocks (AKA Vhost-in apache), following the steps this tuto shows (see the tutorial) The server worked (just with service ...
0
votes
0answers
50 views

Unicorn Nginx not resolving Rails app through IP

I am trying to get a Rails app up on a Linode Ubuntu VPS box using Capistrano, Nginx and Unicorn. I am trying to test it by hitting the IP, but it isn't resolving. Now I don't get any errors, by my ...
0
votes
0answers
34 views

Unicorn reloads Rails in 'test' environment, does not kill workers

I'm setting up a Rails app using Nginx/Unicorn. I've been able to get it to start, but I'm not able to reload the code. When I run 'unicorn reload', everything seems to start fine, and I see this ...
0
votes
1answer
33 views

Rails 3.2 Nginx Unicorn Basic Authentification

I am trying to get Basic Authentification to work with Rails 3.2 nginx and Unicorn The configuration works for hosting my site. I used the Rails Basic Authentification in the Controller but i have to ...
0
votes
0answers
34 views

Debuggin Rails application in production mode without rebooting system

I am working on a very complex system which has a setup that goes like this. 1. Master Web Server Running a rails application which is actually 5 different rails application installed using chef. ...
1
vote
1answer
27 views

Javascript Error on Sinatra with NGINX with Unicorn

I have made a site that runs on NGINX with Unicorn Web Server, and Sinatra. I created the site locally, and everything worked great. However, after uploading, the countdown on the home page is not ...
0
votes
0answers
24 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
vote
0answers
38 views

Nginx, unicorn and multiple rails apps in subrirectories

I'm messing around with aws, and want to deploy multiple apps to my free tier aws account. I'd like to have nginx point to "ec-2-site.com/first-app" and "ec-2-site.com/second-app. Here are my ...
0
votes
1answer
138 views

Haproxy + Nginx + Unicorn - Not serving static assets with SSL

I was trying to make my Rails website serve all the web-pages and assets with both, http or https, but what happens is that when I enter in https mode it is being redirected to http and the assets are ...
0
votes
1answer
76 views

Using Rails 3, Unicorn & Nginx, How do I get access to the host for a subdomain

My rails app toggles functionality based on the subdomain e.g. blah1.mysite.com & blah2.mysite.com I want to access the subdomain in my rails controller by using request.host but the host is ...
0
votes
1answer
68 views

monit does not find the unicorn worker in production server

I'm using this gem for deploy kapify. This is my unicorn config: unicorn config unicorn.rb.erb unicorn_init.erb I have in my deploy: server "111.111.111.111", :web, :app, :db, primary: true set ...
0
votes
0answers
45 views

Dragonfly not working in production

I am using Dragonfly with Nginx, unicorn and mini_magick. I am using mem_cache_store in production. Image upload and display works fine in development environment. But on production it fails with ...
3
votes
3answers
48 views

Avoiding to hardcode server configuration

I'm working on a Rails application, and I'm about to open-source it. I'm deploying it to a VPS server, configured with nginx and unicorn, following this RailsCast. In order to get Capistrano, Nginx ...
0
votes
1answer
134 views

Omniauth Nginx Unicorn callback to wrong host URL

I've deployed a Rails app to a VPS server, and I'm using the Nginx/Unicorn combo, everything works fine, except that for some reason beyond my understanding, the Omniauth callbacks redirect wrong, ...
2
votes
1answer
143 views

Random unicorn timeouts and flapping

I'm running a pretty high-traffic Rails 3.2 app on Unicorn and Nginx (multiple web nodes), but every once in a while I will see Unicorn workers start timing out and getting sigkilled by the Unicorn ...
0
votes
2answers
122 views

RoR - nginx issue when trying to deploy with unicorn

I'm beginner in Ruby on Rails and have some difficulties to deploy my rails application (with nginx + unicorn). I don't know what's going on, but here is the kind of errors I get in log files when I ...
0
votes
1answer
96 views

Would it be performant to use nginx with apache with unicorn for rails or would that be slow?

For an application I'm helping architect we wanted to use nginx + unicorn as part of our server stack. We've heard good things about the speed at which nginx can serve static files. Unfortunately part ...
0
votes
1answer
74 views

What “workers” really are?

I feel lost. Nginx has it's own "Worker" processes, Unicorn has it's own "Worker" settings, Resque has it's own "Workers". Unicorn's settings should be related to Nginx's or Resque's I guess? I ...
0
votes
1answer
103 views

Ruby in Rails, production. Content doesn't updates on pages, but updates after press F5

I've nginx and unicorn on VPS as production environment. And when I add any model instance (article, post - anything) by a form of site, and click on an any link, that assigned page must shows this ...
0
votes
1answer
76 views

Deploying Integrity CI to subdirectory on Nginx and Unicorn

I am trying to deploy Integrity continuous integration server to a subdirectory (or base URL). That is, I'd like to host it at a URL like http://dev.example.com/integrity/ rather than ...
2
votes
1answer
393 views

Bad gateway errors at load on nginx + Unicorn (Rails 3 app)

I have an Rails (3.2) app that runs on nginx and unicorn on a cloud platform. The "box" is running on Ubuntu 12.04. When the system load is at about 70% or above, nginx abruptly (and seemingly ...
0
votes
1answer
476 views

rails deployment using nginx & unicorn: 403 forbidden error

I have just setup a VPS (Centos 6.3) and deploy my app using capistrano. The VPS runs nginx & unicorn. I'm getting a 403 Forbidden error when visiting the server: this line appears in ...
0
votes
3answers
357 views

Unicorn doesn't run in production mode

I am running stack nginx+unicorn+rails 3.2 When I am running bundle exec unicorn_rails -c config/unicorn.rb -E development it is ok, and site running well when I am trying start unicorn site in ...
0
votes
1answer
142 views

502 with Unicorn, how can I find the request that is causing workers to timeout?

I have an rails/nginx/passenger stack that I was trying to move to rails/nginx/unicorn. It appears my 30 second timeout is getting hit a bunch of times. Would it be possible to log the request that is ...
0
votes
0answers
348 views

Unicorn & nginx error

vagrant@lucid32:/vagrant$ bundle exec unicorn_rails -c config/unicorn.rb -D -d {:unicorn_options=>{:listeners=>[], :config_file=>"config/unicorn.rb"}, :app=> ...
0
votes
1answer
55 views

Chopped .css file in production

I getting lopped (chopped) application.css file in production mode (only in browser, both in Chrome and Firefox). http://198.211.125.210/ But the direct link shows the full compiled ...
0
votes
1answer
86 views

Rails i18n if I use unicorn and nginx as a application server doesnt work

When I run my app using default WEBrick server, and set locale from subdomain, i18n works perfectly to "en" and "ja". However, when I use Nginx and Unicorn to run my app, i18n doesnt work like it ...
4
votes
1answer
99 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
249 views

Nginx + configuration error

I've been trying to config a vh file but I end up in this error: I have this config file scraped from unicorns github site. # This is example contains the bare mininum to get nginx going with # ...
1
vote
1answer
261 views

Missing Content-Length header when using Nginx + Gzip + Unicorn

I don't know why http response is missed "Content-Length header" when I use gzip in nginx, i'm really getting stuck,please somebody help me, thank you so much! this is my config file, nginx.conf ...
1
vote
1answer
89 views

Rails development errors in production with Unicorn,Nginx

We've had several instances of uses reporting errors with our site where they saw Rails' development type error page - they helpfully sent screenshots. In all instances, the error itself wasn't a ...
0
votes
0answers
220 views

monit 'nginx' failed to start, 'unicorn' failed to start [closed]

I'm using monit to monitor unicorn and nginx, but when i start monit, it can't start unicorn and nginx. Someone can help me?. this is the information in log file vs config file: monit.log [ICT Feb ...
2
votes
0answers
164 views

Too many redirects error while trying to configure rails application as SSL using nginx and unicorn

I am trying to configure a rails application as SSL using nginx and unicorn. Am trying to set it up locally. For that I first created a self signed certificate using openssl for nginx. I followed the ...
1
vote
0answers
234 views

Rails using Websockets with Nginx and Unicorn?

I am considering implementing chess (which needs websockets) with Rails, and in production deployment using Nginx as a reverse proxy to a bunch of Unicorn processes. In thinking about how to make ...
0
votes
0answers
152 views

Rails 3.2.9/nginx/unicorn, old unicorn processes sticking around after deploy

I just launched a new app on a 512MB VPS slice (Ubuntu 12.04). I'm trying out the nginx/unicorn stack for the first time, I more or less followed Ryan Bates' Railscast for the deployment, which went ...
0
votes
1answer
191 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 ...
2
votes
1answer
487 views

Nginx, unicorn and Heroku

I am rather new to ROR development and currently i am using Herokuo (with Thin) to run my web application. I have been reading up on Zero Downtime deployment and i came across nginx and unicorn. Can ...
-1
votes
2answers
134 views

Hosts file - null route - local server [closed]

I am using the mvps.org hosts file to block unwanted connections locally. The problem is that I am running nginx listening on 80, and all the blocked sites are routing through nginx to my unicorn web ...
1
vote
2answers
176 views

Rails production - all pictures are broken after new deploy

I followed the Ryan's screencast and deployed to VPS. So i use Unicorn + nginx + github + Ubuntu 12.04 LTS + capistrano. Also i use i18n to translate application. I also would like to notice that i ...
0
votes
1answer
21 views

What are the methods to know when the production server goes down?

We are using rails 3.1. We are using nginx as a web-server & unicorn as application server, and also we are running some background jobs (Eg: Solr, delayed jobs, etc.) for accomplishing some ...
2
votes
1answer
113 views

How to set up nginx rewrite rules on Heroku using Unicorn?

I need to set a couple of rules in nginx config file. I'm a bit lost in how to do so. These are the rules. if (-f $document_root/cache/$host/$uri/index.html) { rewrite (.*) ...
1
vote
1answer
210 views

Dealing with long requests in Unicorn + Rails app

We have a Rails app that we run on Unicorn (2 workers) and nginx. We want to integrate a 3rd party API where processing of a single request takes between 1 and 20 seconds. If we simply create a new ...
0
votes
1answer
186 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 ...

1 2 3 4