Tagged Questions
2
votes
3answers
113 views
Why is nginx serving my rails app very slowly on development environment?
I am developing an RoR application on mac OSX.
In order to be able to access my app on http://localhost, and in order to support SSL in my tests, I use nginx as a proxy to my Webrick port 3000 with ...
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 ...
1
vote
2answers
307 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
* ...
2
votes
2answers
634 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 ...
2
votes
1answer
459 views
Passenger/nginx not loading Sinatra app
I'm trying to run a few Sinatra apps under sub-uri's, but it seems that Passenger isn't picking them up as Rack applications.
From the nginx-error log: 403 error, directory index of ...
1
vote
1answer
142 views
showing added weird string when nginx fetches memcached rack result
I'm having a bit of a problem with memcaching the pages generate with my rack app.
I'm storing the page generated by my rack app in memcache with the following bit of (ruby) code:
require 'dalli'
...
2
votes
1answer
413 views
Best way to handle file uploads from Backbone.js to Rails-based API through a proxy?
We have a Backbone.js app that supports file uploads using plupload. The uploads are sent through a proxy (rack-reverse-proxy at the moment, but switching to straight nginx shortly) to a separate ...
1
vote
0answers
82 views
Rails serving map tiles
I am building a mapping application in Rails 3. Data for this specific project is static and therefore I have decided to use TileStache to seed my cache and serve the tiles as static images. The issue ...
1
vote
0answers
344 views
How: Multiple Rails apps per VHost - Migrate from Passenger RailsBaseURI?
I'm migrating from apache/passenger to nginx/unicorn. I've successfully loaded nginix and hosting multiple sites with unicorn, but only one per domain.
In Passenger, one could host multiple rails ...
1
vote
2answers
501 views
Production Thin Best Practices
I'm using Thin as a server for Faye. To do that, I use something like this:
require 'faye'
bayeux = Faye::RackAdapter.new(:mount => '/faye', :timeout => 25)
bayeux.listen(9292)
The Thin ...
2
votes
2answers
904 views
Having multiple locations with nginx, passenger, sinatra
I have a server section that looks like:
server {
listen 80;
server_name arch;
root /data/apps/production/fentonGem2/current/public;
passenger_enabled on;
}
and this works ...
2
votes
2answers
640 views
Passenger Spawning a lot of Rack Applications
output of passenger-memory-stats
----- Passenger processes -----
PID VMSize Private Name
-------------------------------
28572 207.4 MB ? Rack: /home/myapp/application
28580 207.0 MB ...
1
vote
1answer
438 views
How do I deploy a Sinatra app with Nginx and Passenger?
I'm on a Dreamhost virtual private server. I have never written a Sinatra app, or any other Rack app before. I'm just trying to get a Hello World app to run but I keep getting the Passenger error page ...
0
votes
1answer
184 views
Unicorn log showing 2 entries for every hit
This is the unicorn.log from running unicorn on my dev machine, but the server is doing the same thing. For every request getting pushed to unicorn there are two log entries. Locally the public folder ...
4
votes
4answers
2k views
How can I make nginx return a static response and send request headers to app?
I am making a high-load web statistics system through embedding <img> tag to site. The thing I want to do is:
nginx gets request for an image from some host
it gives as answer to host little ...
9
votes
1answer
4k views
Unicorn vs Passenger Standalone behind nginx [closed]
I'm trying to decide between Unicorn and Phusion Passenger Standalone (formerly Phusion Passenger Lite). I want to host multiple apps on my server. I have nginx running and listening to port 80. I ...
1
vote
3answers
1k views
Getting upload process via Nginx + Unicorn
I'm using Nginx to reverse proxy my Unicorn process for a Rails app that I have. I would like to be able to get a progress status (similar to apache-upload-progress-module) for file uploads. I tried ...
4
votes
2answers
2k views
Message “X-Accel-Mapping header missing” in Nginx error log
I am running a Rails 3 site on Ubuntu 8.04 with Nginx 1.0.0 and Passenger 3.0.7.
In my Nginx error.log I started seeing the message X-Accel-Mapping header missing quite a lot. Googling lead me to the ...
4
votes
2answers
4k views
Robust way to deploy a Rack application (Sinatra)
I'm looking for a robust way to deploy a Rack application (in this case a Sinatra app). Requests will take a little time (0.25-0.5 sec waiting on proxied HTTP requests) and there may be a decent ...
0
votes
1answer
515 views
nginx + passenger not using rackup file
I have an issue where Passenger is not detecting the config.ru file for the following nginx server
server {
listen 80;
passenger_enabled on;
server_name callumj.com ...
2
votes
3answers
417 views
Is there anyway to make a Rails / Rack application tell the web server to drop the connection
There are many security reasons why one would want to drop an HTTP connection with no response (eg. OWASP's SSL best practices). When these can be detected at the server level then it's no big deal. ...
2
votes
1answer
1k views
Multiple rack apps on nginx + passenger, one as root, the other not…config help
So I've got two apps I want to run on a server. One app I would like to be the "default" app--that is, all URLs should be sent this app by default, except for a certain path, lets call it /foo:
...
0
votes
1answer
735 views
Where should I set HTTP headers, such as Expires?
I want to deploy an app using Sinatra on Phusion Passenger w/ nginx. If I want to set the Expires header on my static content - stylesheets, say - there are appear to be three places where I could ...