Our Publications
About Us
Josh Software
Our passion is Ruby On Rails! We are an Indian company who believes that programming is an art.Our portfolio! -- Contact Us
Categories
- Case Studies (1)
- CMS (9)
- Radiant (9)
- General (24)
- Javascript (5)
- Mobile Development (1)
- Sencha (1)
- MongoDB (2)
- Ruby (45)
- Ruby on Rails (117)
- Conferences (14)
- Search (8)
- Tutorials (12)
Authors
Tag Archives: passenger
nginx and thin installation and configuration
Install nginx server using following command apt-get install nginxEdit nginx configuration and add server block inside html block. server { listen 80; server_name boost; root /home/sandip/rails_app/public; location / { proxy_set_header X-Real-IP $remote_addr; … Continue reading
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
Migrating Acemoney onto a different server with nginx+passenger
Acemoney is a hosted application built by us i.e. Josh Software. Currently, its hosted on a linode with nginx+thin configured. The problem here is that there are 3 thin servers which consume humongous ‘stagnant’ memory. We have decided to migrate … Continue reading
