Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

perlbal(3pm) [debian man page]

Perlbal(3pm)						User Contributed Perl Documentation					      Perlbal(3pm)

NAME
Perlbal - Reverse-proxy load balancer and webserver SEE ALSO
<http://www.danga.com/perlbal/> CONTRIBUTING
Got a patch? Or a bug report? Instructions on how to contribute are located here: <http://contributing.appspot.com/perlbal> Thanks! COPYRIGHT AND LICENSE
Copyright 2004, Danga Interactive, Inc. Copyright 2005-2010, Six Apart, Ltd. You can use and redistribute Perlbal under the same terms as Perl itself. perl v5.14.2 2012-02-27 Perlbal(3pm)

Check Out this Related Man Page

Perlbal::Manual::Selector(3pm)				User Contributed Perl Documentation			    Perlbal::Manual::Selector(3pm)

NAME
Perlbal::Manual::Selector - Configuring Perlbal as a virtual service that maps onto other services VERSION Perlbal 1.78. DESCRIPTION How to configure a Perlbal "selector" service. READ ME FIRST Please read Perlbal::Manual::Configuration first for a better explanation on how to configure Perlbal. This document will make much more sense after reading that. Configuring Perlbal as a Selector The "selector" role allows you to create a service that selects to which other service a request should be sent to. Here's an example of how to do that with the help of Perlbal::Plugin::VHosts: LOAD vhosts CREATE SERVICE selector_service SET listen = 0.0.0.0:80 SET role = selector SET plugins = vhosts VHOST *.site1.com = service1 VHOST *.site2.com = service2 ENABLE selector_service In this case, requests to both "site1" and "site2" are received by "selector_service", which then sends requests for "site1" to "service1" and requests for "site2" to "service2". Depending on your needs, you may want to use an existing plugin (e.g., Perlbal::Plugin::Vhosts, Perlbal::Plugin::VPaths) or create your own (see "selector" under Perlbal::Manual::Plugins). SEE ALSO Perlbal::Manual::Configuration, Perlbal::Manual::Management, Perlbal::Manual::Plugins, Perlbal::Plugin::Vhosts, Perlbal::Plugin::VPaths. perl v5.14.2 2011-01-23 Perlbal::Manual::Selector(3pm)
Man Page