mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
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
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.