Nginx is a pretty awesome lightweight Web Server for Linux. You can use it to deliver static web content. But you can use at as a load balancer, too. If you have a Ruby on Rails Application running on multiple unicorn servers, than Nginx can do the load balancing for the unicorn servers. Just addContinue reading “Load balancing with Nginx And Unicorn”
Tag Archives: Unicorn
Unicorn Starting Problems
After I installed fresh unicorn I got this error message by starting “unicorn_rails” Could not find activesupport-3.1.0 in any of the sources I still don’t know what was exactly the problem. But after I closed the terminal and opened a new one, everything worked fine.
Unicorn
Unicorn is a pretty cool and super fast HTTP Server for Rack applications. You can install it with this command: gem install unicorn and you can run you Ruby on Rails app on it with this command: <RAILS_ROOT>: unicorn_rails Just navigate into your root app directory and type in “unicorn_rails”. By default it will runContinue reading “Unicorn”