benoitc b7b51adf13 allows gunicorn to bind to multiple address
Allows gunicorn to listen on different interface. It can be either ipv6,
unix or ipv4 sockets.

Ex:

    gunicorn -w3 -b 127.0.0.1:8001 -b 127.0.0.1:8000 -b [::1]:8000 test:app

fix #444
2012-12-14 10:18:39 +01:00
..
2012-05-15 10:11:48 +02:00

This file is for you to describe the pylonstest application. Typically
you would include information such as the information below:

Installation and Setup
======================

Install ``pylonstest`` using easy_install::

    easy_install pylonstest

Make a config file as follows::

    paster make-config pylonstest config.ini

Tweak the config file as appropriate and then setup the application::

    paster setup-app config.ini

Then you are ready to go.