Posts

Showing posts from May 29, 2010

Nginx Load Balancing | Reverse Proxy Nginx | SSL Nginx

Used The howto of nixcraft.in.conf that can be found on google baby First File   GNU nano 2.0.9                                          File: nginx.conf.bak                                                                                          #pid        /var/run/nginx.pid; pid               logs/nginx.pid; user              nginx nginx; worker_processes  10; events {     worker_connections  1024; } http {   default_type       application/octet-stream;  ## Common options ##  include options.conf;  ## Proxy settings ##  include proxy.conf;  ## lb domains ##  include nixcraft.in.conf;  include loadtest.conf; Second File  nixcraft.in.conf ## Connect to backend servers via LAN ## ## Reverse Proxy Load Balancer Logic ## upstream nixcraft  {       server publicip weight=10 max_fails=3 fail_timeout=30s;       server publicip weight=10 max_fails=3 fail_timeout=30s;       server publicip:443 weight=10 max_fails=3 fail_timeout=30s;       server p

Haproxy | HAProxy | Web load Balancing

#--------------------------------------------------------------------- # Example configuration for a possible web application.  See the # full configuration options online. # #   http://haproxy.1wt.eu/download/1.3/doc/configuration.txt # #--------------------------------------------------------------------- #--------------------------------------------------------------------- # Global settings #--------------------------------------------------------------------- global     log         127.0.0.1 local2     chroot      /var/lib/haproxy     pidfile     /var/run/haproxy.pid     maxconn     4000     user        haproxy     group       haproxy     daemon #--------------------------------------------------------------------- # common defaults that all the 'listen' and 'backend' sections will # use if not designated in their block #--------------------------------------------------------------------- #-------------------------------------------------

Consolidated Server

Image
Proposed Virtualized Server Farm