Tagged Questions
0
votes
0answers
32 views
rack http header field changed in the response
I am using unicorn with sinatra and my server must send back a response to the client application with a specific custom http header, let's say 'my-header'. However the client always receives ...
0
votes
0answers
28 views
resque-web with rack 1.4.5 (unicorn + nginx)
Recently installed resque-web on Debian 6 (with ruby 1.8) using
sudo gem install resque
sudo gem install unicorn
Everything works fine until I restart the server (which is also running Redmine + ...
1
vote
0answers
105 views
Can't activate rack-1.4.0
I try run an application on sinatra with Unicorn... This is the stack.
andres@andres-desktop:~/testkreattiewe$ unicorn
I, [2013-03-28T14:31:14.052748 #7080] INFO -- : listening on addr=0.0.0.0:8080 ...
0
votes
0answers
31 views
Rails::Rack:LogTailer and Unicorn
I'm switching from Thin to Unicorn. So far everything works and my tests are passing, but I'm not getting the useful log statements in my terminal. I have to tail log/development.log to see what ...
0
votes
1answer
59 views
Does Rack handle requests serially or concurrently?
Suppose I have a single process Rack application, if multiple requests arrive at the same time can the invocations of call(env) occur concurrently? Or is it guaranteed that call(env) will happen ...
1
vote
2answers
323 views
How to run Rack-based application (not Rails) with Unicorn
How can I run a Rack-based application (not Rails) with unicorn? Let's assume I have a "hello world" response simple rack app with the name of server.ru, and config file at the same directory with the ...
1
vote
3answers
317 views
Unicorn + Rack Lint Error - content header
I keep getting the follow server error when running unicorn on my local machine:
E, [2012-08-17T10:25:11.961002 #95265] ERROR -- : app error: Content-Length header was 780958, but should be 781014 ...
1
vote
0answers
95 views
Rails 3.1.0 + ruby-1.9.2-p180 cannot work with both unicorn and rake
I have Ruby 1.9.2-p180 on Rails 3.1.0, running on unicorn 4.1.1.
Here is a funny issue:
If I use rack 1.4.1: I can do "rails generate migration something", but Unicorn does not work with this ...
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 ...
2
votes
3answers
529 views
How to make unicorn run a Rails 3.0 app under a path?
I'm migrating from Passenger to Unicorn, and with Passenger I used to run my Rails 3.0 app with the RailsBaseURI option to prefix all URLs with '/blah' for example.
When running the same app under ...
4
votes
1answer
305 views
How to resolve Rack Lint errors?
I have noticed that certain requests, particularly from Uptime Robot to test page uptime have recently started generated the following Rack Lint error on my Rails 3.1.x app:
21:47:05 web.1 | ...
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 ...
1
vote
1answer
308 views
Which framework/server should I use (Ruby)
I am making a web app that will process large files (1gb+). While the files are being uploaded, I need to be able to access the file data (whatever is uploaded so far), and also possibly change the ...
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 ...
2
votes
1answer
832 views
What does Unicorn consider to be “fast” and “slow” requests?
Unicorn says it's for "fast clients". Whenever I read elaboration on this, this is explained as it being appropriate for, say, being behind an nginx proxy server serving http requests, and not for ...
0
votes
1answer
1k views
Why does this rackup file work with Thin, but not WEBrick or Unicorn?
I am having a strange issue running my static website locally (for testing).
Both WEBrick and Unicorn are causing an assertion failure in Rack when navigating to root. However Thin works
perfectly.
...
6
votes
1answer
3k views
What's wrong with my rackup file?
When i attempt to start my unicorn server I've got the next stack trace:
Can't understand what's wrong with rackup file? Why it is not readable?
sites@bck:~/fatfreecrm$ ...
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 ...
1
vote
1answer
504 views
Uploading lots of files in my webapp leads to deadlock in Rack + Unicorn
I've got a Rails 3.1rc1 app that allows uploading of multiple files at once via a jQuery plugin called File Upload: http://aquantum-demo.appspot.com/file-upload This allows the user to upload a bunch ...
3
votes
1answer
626 views
nanoc site tested with unicorn
I have a nanoc site (so, all static pages) that I'd like to test with unicorn.
The idea behind this is to host this site on heroku then.
The structure is then a rack application.
I have added a ...
