Tag Archives: deployment

ruby on rails installation on fresh ubuntu machine

Ruby On Rails Installation on fresh ubuntu machine Installation steps are applicable to ubuntu versions interpid, karmic koala.Make necessary changes according to package manager provided by other linux operating systems in order install ruby and rails. Before getting started to … Continue reading

Posted in Ruby, Ruby on Rails | Tagged , | 1 Comment

Imagemagick/ RMagick Installation on ubuntu

ImageMagick Installation Ubuntu machine has default apt-get package manager.To install imagemagick following packages needs to be installed. apt-get install imagemagick librmagick-ruby libmagickwand-dev RMagick gem install gem install rmagick If you still facing problems with gem installation, Please look that following … Continue reading

Posted in Ruby on Rails | Tagged , , , | Leave a comment

nginx passenger configuration for rails application

#user  nobody;user www-data;worker_processes  2; #error_log  logs/error.log;#error_log  logs/error.log  notice;#error_log  logs/error.log  info; #pid        logs/nginx.pid; events {    worker_connections  1024;} http {    passenger_root /var/lib/gems/1.8/gems/passenger-2.2.8;    passenger_ruby /usr/bin/ruby1.8;    passenger_max_pool_size 3;     include       mime.types; default_type  application/octet-stream;     #log_format  main  ’$remote_addr – … Continue reading

Posted in Ruby on Rails | Tagged , , | 3 Comments